From a4fd8c126d69541ed8016a04803b2580d7098fbf Mon Sep 17 00:00:00 2001 From: LmeSzinc <37934724+LmeSzinc@users.noreply.github.com> Date: Fri, 13 Mar 2026 18:48:29 +0800 Subject: [PATCH] Fix: Handle popup after enter minigame --- module/minigame/minigame.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/module/minigame/minigame.py b/module/minigame/minigame.py index 7af152045..55769f286 100644 --- a/module/minigame/minigame.py +++ b/module/minigame/minigame.py @@ -196,6 +196,10 @@ class Minigame(UI): if self.ui_page_appear(page_academy, interval=5): self.device.click(ACADEMY_GOTO_GAME_ROOM) continue + # You've reached your monthly limit of Game Tickets, and will not be able to earn any more. + # Continue playing the minigame? + if self.handle_popup_confirm('MINIGAME_ENTER'): + continue # game room and choose game have same header, go to game room first self.go_to_main_page()