From 9216a36e0cd2bfcc72b2f8ffd4cac5a9030e5d8f Mon Sep 17 00:00:00 2001 From: RedDeadDepresso <94017243+RedDeadDepresso@users.noreply.github.com> Date: Mon, 1 Jan 2024 19:32:25 +0000 Subject: [PATCH] fix: shop --- tasks/shop/ui.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/shop/ui.py b/tasks/shop/ui.py index 6365cf3..0078c7b 100644 --- a/tasks/shop/ui.py +++ b/tasks/shop/ui.py @@ -97,10 +97,10 @@ class ShopUI(UI): one at 8 and the other at 16. Only once for each checkpoint. """ - if (8 < item < 16) and not self.swipe_flags[8]: + if (9 <= item <= 16) and not self.swipe_flags[8]: self.swipe_flags[8] = True return True - elif item > 16 and not self.swipe_flags[16]: + elif item > 17 and not self.swipe_flags[16]: self.swipe_flags[16] = True return True return False