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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user