From 768da4d37f744d379863b2b47e9b60d9b3bea8ca Mon Sep 17 00:00:00 2001 From: RedDeadDepresso <94017243+RedDeadDepresso@users.noreply.github.com> Date: Mon, 1 Jan 2024 19:42:32 +0000 Subject: [PATCH] fix: shop --- tasks/shop/shop.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/shop/shop.py b/tasks/shop/shop.py index 8e6d132..3c639e3 100644 --- a/tasks/shop/shop.py +++ b/tasks/shop/shop.py @@ -75,7 +75,7 @@ class Shop(ShopUI): self.select_items(self.current_item_list) return ShopStatus.PURCHASE case ShopStatus.PURCHASE: - if self.make_purchase(): + if self.make_purchase() and self.current_purchase_count > 1: return ShopStatus.REFRESH return ShopStatus.END case ShopStatus.REFRESH: