1
0
mirror of https://github.com/TheFunny/ArisuAutoSweeper synced 2025-12-19 19:25:24 +00:00

fix: shop

This commit is contained in:
RedDeadDepresso 2024-01-01 19:32:25 +00:00 committed by YoursFunny
parent ca1b1b2efd
commit 390082fa50
Signed by: YoursFunny
GPG Key ID: 207EDC3CD5B40F9C

View File

@ -97,10 +97,10 @@ class ShopUI(UI):
one at 8 and the other at 16. one at 8 and the other at 16.
Only once for each checkpoint. 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 self.swipe_flags[8] = True
return 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 self.swipe_flags[16] = True
return True return True
return False return False