diff options
Diffstat (limited to 'apworld/static_logic.py')
-rw-r--r-- | apworld/static_logic.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apworld/static_logic.py b/apworld/static_logic.py index 1ace1e7..1017ec7 100644 --- a/apworld/static_logic.py +++ b/apworld/static_logic.py | |||
@@ -130,7 +130,7 @@ class Lingo2StaticLogic: | |||
130 | for panel_id in door.panels] | 130 | for panel_id in door.panels] |
131 | panel_names.sort() | 131 | panel_names.sort() |
132 | 132 | ||
133 | return f"{map_part} - {", ".join(panel_names)}" | 133 | return map_part + " - " + ", ".join(panel_names) |
134 | 134 | ||
135 | def get_door_location_name_by_id(self, door_id: int) -> str: | 135 | def get_door_location_name_by_id(self, door_id: int) -> str: |
136 | door = self.objects.doors[door_id] | 136 | door = self.objects.doors[door_id] |