From 23b1b83bddf79933e173f1633255140d69630cb4 Mon Sep 17 00:00:00 2001 From: Toasterkitten Date: Thu, 25 Jun 2026 16:37:02 -0400 Subject: [PATCH] oops --- untitled/screens/house.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/untitled/screens/house.py b/untitled/screens/house.py index 25c064b..589274d 100644 --- a/untitled/screens/house.py +++ b/untitled/screens/house.py @@ -25,7 +25,7 @@ def house(save: model.Save): ) case "View your inventory": print(f"Money: {save.player.money}") - if any(amount > 1 for amount in save.player.inventory.values()): + if any(amount > 0 for amount in save.player.inventory.values()): print( f"\n\n{"\n".join(f'{item.capitalize()}: {amount}' for item,amount in save.player.inventory.items() if amount>0)}" )