summary refs log tree commit diff stats
path: root/utils/pickle_static_data.py
diff options
context:
space:
mode:
Diffstat (limited to 'utils/pickle_static_data.py')
-rw-r--r--utils/pickle_static_data.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/utils/pickle_static_data.py b/utils/pickle_static_data.py index 10ec69b..e40c21c 100644 --- a/utils/pickle_static_data.py +++ b/utils/pickle_static_data.py
@@ -150,8 +150,6 @@ def process_entrance(source_room, doors, room_obj):
150def process_panel(room_name, panel_name, panel_data): 150def process_panel(room_name, panel_name, panel_data):
151 global PANELS_BY_ROOM 151 global PANELS_BY_ROOM
152 152
153 full_name = f"{room_name} - {panel_name}"
154
155 # required_room can either be a single room or a list of rooms. 153 # required_room can either be a single room or a list of rooms.
156 if "required_room" in panel_data: 154 if "required_room" in panel_data:
157 if isinstance(panel_data["required_room"], list): 155 if isinstance(panel_data["required_room"], list):
@@ -229,8 +227,13 @@ def process_panel(room_name, panel_name, panel_data):
229 else: 227 else:
230 non_counting = False 228 non_counting = False
231 229
230 if "location_name" in panel_data:
231 location_name = panel_data["location_name"]
232 else:
233 location_name = None
234
232 panel_obj = Panel(required_rooms, required_doors, required_panels, colors, check, event, exclude_reduce, 235 panel_obj = Panel(required_rooms, required_doors, required_panels, colors, check, event, exclude_reduce,
233 achievement, non_counting) 236 achievement, non_counting, location_name)
234 PANELS_BY_ROOM[room_name][panel_name] = panel_obj 237 PANELS_BY_ROOM[room_name][panel_name] = panel_obj
235 238
236 239