about summary refs log tree commit diff stats
path: root/apworld/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'apworld/__init__.py')
-rw-r--r--apworld/__init__.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/apworld/__init__.py b/apworld/__init__.py index ba5d7ea..a80156c 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",
@@ -167,6 +168,7 @@ class Lingo2World(World):
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),
169 "rte": [self.static_logic.objects.maps[map_id].name for map_id in self.player_logic.rte_mapping], 170 "rte": [self.static_logic.objects.maps[map_id].name for map_id in self.player_logic.rte_mapping],
171 "seed": self.random.randint(0, 1000000),
170 "version": self.static_logic.get_data_version(), 172 "version": self.static_logic.get_data_version(),
171 } 173 }
172 174