diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2025-09-25 12:10:07 -0400 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2025-09-25 12:10:07 -0400 |
commit | 72b9d1f0952aee6e72b9478118dc99e08ff1fa54 (patch) | |
tree | 4fd17e62dfd3d89c150631a4cba299694034dc1e | |
parent | 3f53502a5907ed1982d28a392c54331f0c1c2c42 (diff) | |
download | lingo2-archipelago-72b9d1f0952aee6e72b9478118dc99e08ff1fa54.tar.gz lingo2-archipelago-72b9d1f0952aee6e72b9478118dc99e08ff1fa54.tar.bz2 lingo2-archipelago-72b9d1f0952aee6e72b9478118dc99e08ff1fa54.zip |
This should've been part of the prev commit
-rw-r--r-- | apworld/__init__.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apworld/__init__.py b/apworld/__init__.py index 6ac2926..9d7d149 100644 --- a/apworld/__init__.py +++ b/apworld/__init__.py | |||
@@ -182,3 +182,7 @@ class Lingo2World(World): | |||
182 | # returning slot_data so it regens, giving it back in multiworld.re_gen_passthrough | 182 | # returning slot_data so it regens, giving it back in multiworld.re_gen_passthrough |
183 | # we are using re_gen_passthrough over modifying the world here due to complexities with ER | 183 | # we are using re_gen_passthrough over modifying the world here due to complexities with ER |
184 | return slot_data | 184 | return slot_data |
185 | |||
186 | component = Component("Lingo 2 Client", component_type=Type.CLIENT, func=launch_client, | ||
187 | description="Open Lingo 2.") | ||
188 | components.append(component) | ||