diff options
Diffstat (limited to 'locations.py')
-rw-r--r-- | locations.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/locations.py b/locations.py index 92ee309..a6e53e7 100644 --- a/locations.py +++ b/locations.py | |||
@@ -56,7 +56,7 @@ def load_location_data(): | |||
56 | 56 | ||
57 | for room_name, doors in DOORS_BY_ROOM.items(): | 57 | for room_name, doors in DOORS_BY_ROOM.items(): |
58 | for door_name, door in doors.items(): | 58 | for door_name, door in doors.items(): |
59 | if door.skip_location or door.event or door.panels is None: | 59 | if door.skip_location or door.event or not door.panels: |
60 | continue | 60 | continue |
61 | 61 | ||
62 | location_name = door.location_name | 62 | location_name = door.location_name |