From 1643fb93d0dd6275d9e311dd84fc97297367a791 Mon Sep 17 00:00:00 2001 From: Owen Feldman Date: Mon, 27 Apr 2026 19:18:45 -0400 Subject: [PATCH] Some bugfixes Claude mentioned, "They still are still sad though" --- data/save.py | 1 + systems/items.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/data/save.py b/data/save.py index 92ec8f0..9e2cbf5 100644 --- a/data/save.py +++ b/data/save.py @@ -111,6 +111,7 @@ def load( if os.path.exists("WEB_VERSION"): if not hide_web_message: print("Loading is disabled.") + return None punished = False data_dir = get_data_dir() hash_path = os.path.join(data_dir, "dont hurt cats.json") diff --git a/systems/items.py b/systems/items.py index 8493c83..4ae4a5c 100644 --- a/systems/items.py +++ b/systems/items.py @@ -41,7 +41,7 @@ def item_menu(cat: data.cat.Cat, item): cat.happiness = 25.0 cat.inventory["Catnip"] -= 1 print( - f"{cat.name} plays with the catnip. {cat.name} is less depressed! They still are still sad though." + f"{cat.name} plays with the catnip. {cat.name} is less depressed! They are still sad though." ) else: print("You don't have any catnip!")