We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f36ae75 commit 2a3f3b4Copy full SHA for 2a3f3b4
1 file changed
campaign/campaign_main/campaign_14_4.py
@@ -107,9 +107,10 @@ class Campaign(CampaignBase):
107
108
def map_data_init(self, map_):
109
super().map_data_init(map_)
110
- for override_grid in OVERRIDE:
111
- # Set may_enemy, but keep may_ambush
112
- self.map[override_grid.location].may_enemy = override_grid.may_enemy
+ if not self.map_is_clear_mode:
+ for override_grid in OVERRIDE:
+ # Set may_enemy, but keep may_ambush
113
+ self.map[override_grid.location].may_enemy = override_grid.may_enemy
114
115
def battle_0(self):
116
self.pick_up_light_house(A9)
0 commit comments