diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2025-08-07 17:18:47 -0400 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2025-08-07 17:18:47 -0400 |
commit | c0c5431800d0306d01814e9902566c9b4fc9220b (patch) | |
tree | 50d206c31bb7f535c3f2ca0b8d0f735c5a61f9a5 /apworld/__init__.py | |
parent | c9da387ede51f207825b63d9f13036a7b661d4b3 (diff) | |
download | lingo2-archipelago-proto.tar.gz lingo2-archipelago-proto.tar.bz2 lingo2-archipelago-proto.zip |
Assign AP IDs to doors and panels proto
Diffstat (limited to 'apworld/__init__.py')
-rw-r--r-- | apworld/__init__.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apworld/__init__.py b/apworld/__init__.py index 013910e..1544c7b 100644 --- a/apworld/__init__.py +++ b/apworld/__init__.py | |||
@@ -25,10 +25,10 @@ class Lingo2World(World): | |||
25 | options_dataclass = Lingo2Options | 25 | options_dataclass = Lingo2Options |
26 | options: Lingo2Options | 26 | options: Lingo2Options |
27 | 27 | ||
28 | item_name_to_id = {} | ||
29 | location_name_to_id = {} | ||
30 | |||
31 | static_logic = Lingo2StaticLogic() | 28 | static_logic = Lingo2StaticLogic() |
29 | item_name_to_id = static_logic.item_name_to_id | ||
30 | location_name_to_id = static_logic.location_name_to_id | ||
31 | |||
32 | player_logic: Lingo2PlayerLogic | 32 | player_logic: Lingo2PlayerLogic |
33 | 33 | ||
34 | def generate_early(self): | 34 | def generate_early(self): |