summary refs log tree commit diff stats
path: root/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to '__init__.py')
-rw-r--r--__init__.py8
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
6from BaseClasses import Item, ItemClassification, Tutorial 6from BaseClasses import Item, ItemClassification, Tutorial
7from worlds.AutoWorld import WebWorld, World 7from worlds.AutoWorld import WebWorld, World
8from .datatypes import Room, RoomEntrance
8from .items import ALL_ITEM_TABLE, LingoItem 9from .items import ALL_ITEM_TABLE, LingoItem
9from .locations import ALL_LOCATION_TABLE 10from .locations import ALL_LOCATION_TABLE
10from .options import LingoOptions 11from .options import LingoOptions
11from .player_logic import LingoPlayerLogic 12from .player_logic import LingoPlayerLogic
12from .regions import create_regions 13from .regions import create_regions
13from .static_logic import Room, RoomEntrance
14 14
15 15
16class LingoWebWorld(WebWorld): 16class 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