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__.py6
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):