diff options
Diffstat (limited to 'apworld/__init__.py')
| -rw-r--r-- | apworld/__init__.py | 3 |
1 files changed, 3 insertions, 0 deletions
| diff --git a/apworld/__init__.py b/apworld/__init__.py index ba5d7ea..6b5338e 100644 --- a/apworld/__init__.py +++ b/apworld/__init__.py | |||
| @@ -157,6 +157,7 @@ class Lingo2World(World): | |||
| 157 | "shuffle_doors", | 157 | "shuffle_doors", |
| 158 | "shuffle_gallery_paintings", | 158 | "shuffle_gallery_paintings", |
| 159 | "shuffle_letters", | 159 | "shuffle_letters", |
| 160 | "shuffle_music", | ||
| 160 | "shuffle_symbols", | 161 | "shuffle_symbols", |
| 161 | "shuffle_worldports", | 162 | "shuffle_worldports", |
| 162 | "strict_cyan_ending", | 163 | "strict_cyan_ending", |
| @@ -166,7 +167,9 @@ class Lingo2World(World): | |||
| 166 | 167 | ||
| 167 | slot_data: dict[str, object] = { | 168 | slot_data: dict[str, object] = { |
| 168 | **self.options.as_dict(*slot_options), | 169 | **self.options.as_dict(*slot_options), |
| 170 | "custom_mint_ending": self.player_logic.custom_mint_ending or "", | ||
| 169 | "rte": [self.static_logic.objects.maps[map_id].name for map_id in self.player_logic.rte_mapping], | 171 | "rte": [self.static_logic.objects.maps[map_id].name for map_id in self.player_logic.rte_mapping], |
| 172 | "seed": self.random.randint(0, 1000000), | ||
| 170 | "version": self.static_logic.get_data_version(), | 173 | "version": self.static_logic.get_data_version(), |
| 171 | } | 174 | } |
| 172 | 175 | ||
