summary refs log tree commit diff stats
path: root/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to '__init__.py')
-rw-r--r--__init__.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/__init__.py b/__init__.py index e35a102..c92e530 100644 --- a/__init__.py +++ b/__init__.py
@@ -6,8 +6,8 @@ from logging import warning
6from BaseClasses import Item, ItemClassification, Tutorial 6from BaseClasses import Item, ItemClassification, Tutorial
7from worlds.AutoWorld import WebWorld, World 7from worlds.AutoWorld import WebWorld, World
8from .datatypes import Room, RoomEntrance 8from .datatypes import Room, RoomEntrance
9from .items import ALL_ITEM_TABLE, LingoItem 9from .items import ALL_ITEM_TABLE, ITEMS_BY_GROUP, LingoItem
10from .locations import ALL_LOCATION_TABLE 10from .locations import ALL_LOCATION_TABLE, LOCATIONS_BY_GROUP
11from .options import LingoOptions 11from .options import LingoOptions
12from .player_logic import LingoPlayerLogic 12from .player_logic import LingoPlayerLogic
13from .regions import create_regions 13from .regions import create_regions
@@ -46,6 +46,8 @@ class LingoWorld(World):
46 location_name_to_id = { 46 location_name_to_id = {
47 name: data.code for name, data in ALL_LOCATION_TABLE.items() 47 name: data.code for name, data in ALL_LOCATION_TABLE.items()
48 } 48 }
49 item_name_groups = ITEMS_BY_GROUP
50 location_name_groups = LOCATIONS_BY_GROUP
49 51
50 player_logic: LingoPlayerLogic 52 player_logic: LingoPlayerLogic
51 53