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__.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/apworld/__init__.py b/apworld/__init__.py index 1af31c0..96f6804 100644 --- a/apworld/__init__.py +++ b/apworld/__init__.py
@@ -11,7 +11,6 @@ from .options import Lingo2Options
11from .player_logic import Lingo2PlayerLogic 11from .player_logic import Lingo2PlayerLogic
12from .regions import create_regions, shuffle_entrances, connect_ports_from_ut 12from .regions import create_regions, shuffle_entrances, connect_ports_from_ut
13from .static_logic import Lingo2StaticLogic 13from .static_logic import Lingo2StaticLogic
14from .version import APWORLD_VERSION
15from ..LauncherComponents import Component, Type, components, launch as launch_component, icon_paths 14from ..LauncherComponents import Component, Type, components, launch as launch_component, icon_paths
16 15
17 16
@@ -138,7 +137,7 @@ class Lingo2World(World):
138 137
139 slot_data: dict[str, object] = { 138 slot_data: dict[str, object] = {
140 **self.options.as_dict(*slot_options), 139 **self.options.as_dict(*slot_options),
141 "version": [self.static_logic.get_data_version(), APWORLD_VERSION], 140 "version": self.static_logic.get_data_version(),
142 } 141 }
143 142
144 if self.options.shuffle_worldports: 143 if self.options.shuffle_worldports: