Skip to content

Commit bad155d

Browse files
committed
Fix: Subpress wrong siren predictions on land in B3/D3
1 parent 156a988 commit bad155d

2 files changed

Lines changed: 10 additions & 2 deletions

File tree

campaign/event_20221222_cn/b3.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
MAP = CampaignMap('B3')
88
MAP.shape = 'I9'
9-
MAP.camera_data = ['D2', 'D5', 'D7', 'F2', 'F5', 'F7']
9+
MAP.camera_data = ['D3', 'F3', 'F5', 'F7']
1010
MAP.camera_data_spawn_point = ['D7']
1111
MAP.map_data = """
1212
-- ++ ++ ME -- ME -- ++ ++
@@ -48,6 +48,9 @@
4848
A8, B8, C8, D8, E8, F8, G8, H8, I8, \
4949
A9, B9, C9, D9, E9, F9, G9, H9, I9, \
5050
= MAP.flatten()
51+
MAP.ignore_prediction(C5, is_siren=True)
52+
MAP.ignore_prediction(E7, is_siren=True)
53+
MAP.ignore_prediction(G4, is_siren=True)
5154

5255

5356
class Config(ConfigBase):
@@ -62,6 +65,7 @@ class Config(ConfigBase):
6265
MAP_HAS_MYSTERY = False
6366
# ===== End of generated config =====
6467

68+
MAP_SIREN_HAS_BOSS_ICON_SMALL = False
6569
MAP_SWIPE_MULTIPLY = (0.997, 1.015)
6670
MAP_SWIPE_MULTIPLY_MINITOUCH = (0.964, 0.982)
6771
MAP_SWIPE_MULTIPLY_MAATOUCH = (0.936, 0.953)

campaign/event_20221222_cn/d3.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
MAP = CampaignMap('D3')
88
MAP.shape = 'I9'
9-
MAP.camera_data = ['D2', 'D5', 'D7', 'F2', 'F5', 'F7']
9+
MAP.camera_data = ['D3', 'F3', 'F5', 'F7']
1010
MAP.camera_data_spawn_point = ['D7']
1111
MAP.map_data = """
1212
-- ++ ++ ME -- ME -- ++ ++
@@ -49,6 +49,9 @@
4949
A8, B8, C8, D8, E8, F8, G8, H8, I8, \
5050
A9, B9, C9, D9, E9, F9, G9, H9, I9, \
5151
= MAP.flatten()
52+
MAP.ignore_prediction(C5, is_siren=True)
53+
MAP.ignore_prediction(E7, is_siren=True)
54+
MAP.ignore_prediction(G4, is_siren=True)
5255

5356

5457
class Config(ConfigBase):
@@ -63,6 +66,7 @@ class Config(ConfigBase):
6366
MAP_HAS_MYSTERY = False
6467
# ===== End of generated config =====
6568

69+
MAP_SIREN_HAS_BOSS_ICON_SMALL = False
6670
MAP_SWIPE_MULTIPLY = (0.997, 1.015)
6771
MAP_SWIPE_MULTIPLY_MINITOUCH = (0.964, 0.982)
6872
MAP_SWIPE_MULTIPLY_MAATOUCH = (0.936, 0.953)

0 commit comments

Comments
 (0)