diff --git a/module/gacha/gacha_reward.py b/module/gacha/gacha_reward.py index aae96c20c..e43387187 100644 --- a/module/gacha/gacha_reward.py +++ b/module/gacha/gacha_reward.py @@ -234,6 +234,11 @@ class RewardGacha(GachaUI, GeneralShop, Retirement): if confirm_timer.reached(): break + # Wishing pool no longer shows coins, go back to normal pools + if self.appear(BUILD_SUBMIT_WW_ORDERS): + logger.info('In wishing pool, go back to normal pools') + self.gacha_side_navbar_ensure(upper=1) + def gacha_submit(self, skip_first_screenshot=True): """ Pages: diff --git a/module/map/fleet.py b/module/map/fleet.py index f0f5e0852..fc516c66e 100644 --- a/module/map/fleet.py +++ b/module/map/fleet.py @@ -508,7 +508,7 @@ class Fleet(Camera, AmbushHandler): if self.fleet_2_location: self.map[self.fleet_2_location].is_fleet = True location_dict = {} - if self.config.FLEET_2: + if self.fleet_2_location: location_dict[2] = self.fleet_2_location location_dict[1] = self.fleet_1_location # Release fortress block diff --git a/module/os/config.py b/module/os/config.py index d88ab3f0e..5bc6a0e88 100644 --- a/module/os/config.py +++ b/module/os/config.py @@ -10,8 +10,9 @@ class OSConfig: IGNORE_LOW_EMOTION_WARN = False MAP_GRID_CENTER_TOLERANCE = 0.2 - MAP_SWIPE_MULTIPLY = (1.320, 1.009) - MAP_SWIPE_MULTIPLY_MINITOUCH = (1.276, 0.974) + MAP_SWIPE_MULTIPLY = (1.174, 1.200) + MAP_SWIPE_MULTIPLY_MINITOUCH = (1.135, 1.160) + MAP_SWIPE_MULTIPLY_MAATOUCH = (1.102, 1.126) DETECTION_BACKEND = 'perspective' MID_DIFF_RANGE_H = (103 - 3, 103 + 3) diff --git a/module/os/map.py b/module/os/map.py index 3df4b21a5..6741525c4 100644 --- a/module/os/map.py +++ b/module/os/map.py @@ -826,8 +826,8 @@ class OSMap(OSFleet, Map, GlobeCamera, StrategicSearchHandler): self.handle_info_bar() self.update() if self.map_rescan_current(drop=drop): - logger.info(f'Map rescan once end, result={result}') - return result + logger.info(f'Map rescan once end, result={True}') + return True if rescan_mode == 'full': logger.hr('Map rescan full', level=2) diff --git a/module/ui/page.py b/module/ui/page.py index 46ecee22b..198d4bc67 100644 --- a/module/ui/page.py +++ b/module/ui/page.py @@ -129,8 +129,8 @@ page_main.link(button=MAIN_GOTO_EVENT_LIST, destination=page_event_list) # Raid page_raid = Page(RAID_CHECK) -page_raid.link(button=GOTO_MAIN, destination=page_main) -page_main.link(button=MAIN_GOTO_RAID, destination=page_raid) +# page_raid.link(button=GOTO_MAIN, destination=page_main) +# page_main.link(button=MAIN_GOTO_RAID, destination=page_raid) # Research # Please don't goto page_research from page_reward.