diff options
Diffstat (limited to '__init__.py')
-rw-r--r-- | __init__.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/__init__.py b/__init__.py index 2f93541..e35a102 100644 --- a/__init__.py +++ b/__init__.py | |||
@@ -5,12 +5,12 @@ from logging import warning | |||
5 | 5 | ||
6 | from BaseClasses import Item, ItemClassification, Tutorial | 6 | from BaseClasses import Item, ItemClassification, Tutorial |
7 | from worlds.AutoWorld import WebWorld, World | 7 | from worlds.AutoWorld import WebWorld, World |
8 | from .datatypes import Room, RoomEntrance | ||
8 | from .items import ALL_ITEM_TABLE, LingoItem | 9 | from .items import ALL_ITEM_TABLE, LingoItem |
9 | from .locations import ALL_LOCATION_TABLE | 10 | from .locations import ALL_LOCATION_TABLE |
10 | from .options import LingoOptions | 11 | from .options import LingoOptions |
11 | from .player_logic import LingoPlayerLogic | 12 | from .player_logic import LingoPlayerLogic |
12 | from .regions import create_regions | 13 | from .regions import create_regions |
13 | from .static_logic import Room, RoomEntrance | ||
14 | 14 | ||
15 | 15 | ||
16 | class LingoWebWorld(WebWorld): | 16 | class LingoWebWorld(WebWorld): |
@@ -100,9 +100,9 @@ class LingoWorld(World): | |||
100 | item = ALL_ITEM_TABLE[name] | 100 | item = ALL_ITEM_TABLE[name] |
101 | 101 | ||
102 | classification = item.classification | 102 | classification = item.classification |
103 | if hasattr(self, "options") and self.options.shuffle_paintings and len(item.painting_ids) > 0\ | 103 | if hasattr(self, "options") and self.options.shuffle_paintings and len(item.painting_ids) > 0 \ |
104 | and len(item.door_ids) == 0 and all(painting_id not in self.player_logic.painting_mapping | 104 | and not item.has_doors and all(painting_id not in self.player_logic.painting_mapping |
105 | for painting_id in item.painting_ids)\ | 105 | for painting_id in item.painting_ids) \ |
106 | and "pilgrim_painting2" not in item.painting_ids: | 106 | and "pilgrim_painting2" not in item.painting_ids: |
107 | # If this is a "door" that just moves one or more paintings, and painting shuffle is on and those paintings | 107 | # If this is a "door" that just moves one or more paintings, and painting shuffle is on and those paintings |
108 | # go nowhere, then this item should not be progression. The Pilgrim Room painting is special and needs to be | 108 | # go nowhere, then this item should not be progression. The Pilgrim Room painting is special and needs to be |