1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-03-17 23:51:30 +08:00

Fix: Auto search condition patch

This commit is contained in:
LmeSzinc
2022-11-25 02:53:31 +08:00
parent d55ede30a8
commit efb13b3106

View File

@@ -66,9 +66,10 @@ class CampaignBase(CampaignBase_):
super().map_get_info()
# Chapter TH has no map_percentage and no 3_stars
if name.startswith('th'):
self.map_is_100_percent_clear = self.map_is_3_stars = self.map_is_threat_safe = auto_search.appear(
main=self)
if name.startswith('th') or name.startswith('ht'):
appear = auto_search.appear(main=self)
self.map_is_100_percent_clear = self.map_is_3_stars = self.map_is_threat_safe = appear
self.map_has_clear_mode = appear
self.map_show_info()
def clear_map_items(self, grids):