diff options
Diffstat (limited to '__init__.py')
-rw-r--r-- | __init__.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/__init__.py b/__init__.py index 25be166..537b149 100644 --- a/__init__.py +++ b/__init__.py | |||
@@ -132,7 +132,8 @@ class LingoWorld(World): | |||
132 | def fill_slot_data(self): | 132 | def fill_slot_data(self): |
133 | slot_options = [ | 133 | slot_options = [ |
134 | "death_link", "victory_condition", "shuffle_colors", "shuffle_doors", "shuffle_paintings", "shuffle_panels", | 134 | "death_link", "victory_condition", "shuffle_colors", "shuffle_doors", "shuffle_paintings", "shuffle_panels", |
135 | "mastery_achievements", "level_2_requirement", "location_checks", "early_color_hallways" | 135 | "enable_pilgrimage", "sunwarp_access", "mastery_achievements", "level_2_requirement", "location_checks", |
136 | "early_color_hallways", "pilgrimage_allows_roof_access", "pilgrimage_allows_paintings", "shuffle_sunwarps" | ||
136 | ] | 137 | ] |
137 | 138 | ||
138 | slot_data = { | 139 | slot_data = { |
@@ -143,6 +144,9 @@ class LingoWorld(World): | |||
143 | if self.options.shuffle_paintings: | 144 | if self.options.shuffle_paintings: |
144 | slot_data["painting_entrance_to_exit"] = self.player_logic.painting_mapping | 145 | slot_data["painting_entrance_to_exit"] = self.player_logic.painting_mapping |
145 | 146 | ||
147 | if self.options.shuffle_sunwarps: | ||
148 | slot_data["sunwarp_permutation"] = self.player_logic.sunwarp_mapping | ||
149 | |||
146 | return slot_data | 150 | return slot_data |
147 | 151 | ||
148 | def get_filler_item_name(self) -> str: | 152 | def get_filler_item_name(self) -> str: |