From 1a95ae57b1f79324f93a8714b37f92de61ccd195 Mon Sep 17 00:00:00 2001 From: Owen Feldman Date: Mon, 27 Apr 2026 19:24:19 -0400 Subject: [PATCH] idea i wrote --- game.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/game.py b/game.py index 95d0b34..3a45007 100644 --- a/game.py +++ b/game.py @@ -79,6 +79,12 @@ class Game: self.game_loop() 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.last_login = time.time() ui.current_cat = self.cat