1
0
mirror of https://github.com/TheFunny/ArisuAutoSweeper synced 2026-06-10 02:34:51 +00:00

feat: added level up and location level up popup

This commit is contained in:
RedDeadDepresso
2024-01-06 22:33:44 +00:00
committed by YoursFunny
parent 659172cdd3
commit b5d2c13259
6 changed files with 34 additions and 0 deletions
+12
View File
@@ -105,3 +105,15 @@ class PopupHandler(ModuleBase):
return True
return False
def handle_location_level_up(self, interval=5) -> bool:
if self.appear_then_click(LOCATION_LEVEL_UP, interval=interval):
return True
return False
def handle_level_up(self, interval=5) -> bool:
if self.appear_then_click(LEVEL_UP, interval=interval):
return True
return False