This commit is contained in:
2026-06-25 16:56:33 -04:00
parent 0b0ae5db73
commit f1ea9a1de5
2 changed files with 66 additions and 2 deletions

View File

@@ -1,6 +1,7 @@
import time
from untitled import generation, model, persistence, rules, ui
from untitled.screens import pet
from untitled.screens.common import go_to, options
@@ -41,8 +42,7 @@ def house(save: model.Save):
print("You don't have any food!")
case "Pet your cat":
rules.reconcile(save.cat, time.time())
rules.excite(save.cat)
print(f"You pet {save.cat.name}, {save.cat.name} is now happy.")
pet.pet(save.cat)
case "Go to...":
go_to(save)
case "Menu":