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__.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/__init__.py b/__init__.py index a8dac86..f22d344 100644 --- a/__init__.py +++ b/__init__.py
@@ -104,9 +104,11 @@ class LingoWorld(World):
104 classification = item.classification 104 classification = item.classification
105 if hasattr(self, "options") and self.options.shuffle_paintings and len(item.painting_ids) > 0\ 105 if hasattr(self, "options") and self.options.shuffle_paintings and len(item.painting_ids) > 0\
106 and len(item.door_ids) == 0 and all(painting_id not in self.player_logic.painting_mapping 106 and len(item.door_ids) == 0 and all(painting_id not in self.player_logic.painting_mapping
107 for painting_id in item.painting_ids): 107 for painting_id in item.painting_ids)\
108 and "pilgrim_painting2" not in item.painting_ids:
108 # If this is a "door" that just moves one or more paintings, and painting shuffle is on and those paintings 109 # If this is a "door" that just moves one or more paintings, and painting shuffle is on and those paintings
109 # go nowhere, then this item should not be progression. 110 # go nowhere, then this item should not be progression. The Pilgrim Room painting is special and needs to be
111 # excluded from this.
110 classification = ItemClassification.filler 112 classification = ItemClassification.filler
111 113
112 return LingoItem(name, classification, item.code, self.player) 114 return LingoItem(name, classification, item.code, self.player)