From bab2196ab7f257f53726c2bee797888bb6f9ce5e Mon Sep 17 00:00:00 2001 From: RedDeadDepresso <94017243+RedDeadDepresso@users.noreply.github.com> Date: Tue, 2 Jan 2024 23:21:34 +0000 Subject: [PATCH] fix: shop --- tasks/shop/ui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/shop/ui.py b/tasks/shop/ui.py index 0078c7b..58eefb7 100644 --- a/tasks/shop/ui.py +++ b/tasks/shop/ui.py @@ -100,7 +100,7 @@ class ShopUI(UI): if (9 <= item <= 16) and not self.swipe_flags[8]: self.swipe_flags[8] = True return True - elif item > 17 and not self.swipe_flags[16]: + elif item >= 17 and not self.swipe_flags[16]: self.swipe_flags[16] = True return True return False