fixed absurd amount of decimals in check on cat, fixed desktop loading saves (oops, it broke in past commits), and load error and success message for desktop

This commit is contained in:
2026-04-20 17:27:56 -04:00
parent 407de1cfba
commit 6026cd49c1
2 changed files with 12 additions and 3 deletions

View File

@@ -185,8 +185,8 @@ def house(cat: Cat):
print(
f"{cat.name} - a {cat.traits["size"]} {cat.traits["color"]} with {cat.traits["eyes"]} eyes."
)
print(f"Happiness level: {cat.happiness}")
print(f"Fullness: {cat.fullness}/100")
print(f"Happiness level: {round(cat.happiness,1)}")
print(f"Fullness: {round(cat.fullness,1)}/100")
print(f"You have ${cat.money}.")
case "Pet your cat":
pet(cat)