idea i wrote

This commit is contained in:
2026-04-27 19:24:19 -04:00
parent 1643fb93d0
commit 1a95ae57b1

View File

@@ -79,6 +79,12 @@ class Game:
self.game_loop() self.game_loop()
def game_loop(self): def game_loop(self):
if os.path.exists(
"admin_handle.py"
): # TODO: make this for specific uuids, like a thing to handle stuff for specific uuids, like give money, but make sure to remove the thing after, and maybe a admin_panel.py to configure a json which admin_handle.py also reads for stuff. i gtg.
import admin_handle # type: ignore
admin_handle.handle(self.cat)
self.cat.apply_decay() self.cat.apply_decay()
self.cat.last_login = time.time() self.cat.last_login = time.time()
ui.current_cat = self.cat ui.current_cat = self.cat