diff options
-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 2700601..e4d7d49 100644 --- a/apworld/static_logic.py +++ b/apworld/static_logic.py | |||
@@ -104,7 +104,7 @@ class Lingo2StaticLogic: | |||
104 | if door.type != data_pb2.DoorType.STANDARD: | 104 | if door.type != data_pb2.DoorType.STANDARD: |
105 | return None | 105 | return None |
106 | 106 | ||
107 | if len(door.keyholders) > 0 or len(door.endings) > 0 or not door.HasField("complete_at"): | 107 | if len(door.keyholders) > 0 or len(door.endings) > 0 or door.HasField("complete_at"): |
108 | return None | 108 | return None |
109 | 109 | ||
110 | if len(door.panels) > 4: | 110 | if len(door.panels) > 4: |