diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2025-09-29 15:41:02 -0400 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2025-09-29 15:41:02 -0400 |
commit | 9bd56a242666a040bd09b2ebbf6faa4ff473775e (patch) | |
tree | 0c6c8057376649c563672c757a173e4b0347681c /apworld/__init__.py | |
parent | 4f1becf510956d9dfc37fff2f92719903568ecf0 (diff) | |
download | lingo2-archipelago-9bd56a242666a040bd09b2ebbf6faa4ff473775e.tar.gz lingo2-archipelago-9bd56a242666a040bd09b2ebbf6faa4ff473775e.tar.bz2 lingo2-archipelago-9bd56a242666a040bd09b2ebbf6faa4ff473775e.zip |
Change version scheme
Diffstat (limited to 'apworld/__init__.py')
-rw-r--r-- | apworld/__init__.py | 3 |
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 | |||
11 | from .player_logic import Lingo2PlayerLogic | 11 | from .player_logic import Lingo2PlayerLogic |
12 | from .regions import create_regions, shuffle_entrances, connect_ports_from_ut | 12 | from .regions import create_regions, shuffle_entrances, connect_ports_from_ut |
13 | from .static_logic import Lingo2StaticLogic | 13 | from .static_logic import Lingo2StaticLogic |
14 | from .version import APWORLD_VERSION | ||
15 | from ..LauncherComponents import Component, Type, components, launch as launch_component, icon_paths | 14 | from ..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: |