diff options
Diffstat (limited to '__init__.py')
-rw-r--r-- | __init__.py | 6 |
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 | |||
6 | from BaseClasses import Item, ItemClassification, Tutorial | 6 | from BaseClasses import Item, ItemClassification, Tutorial |
7 | from worlds.AutoWorld import WebWorld, World | 7 | from worlds.AutoWorld import WebWorld, World |
8 | from .datatypes import Room, RoomEntrance | 8 | from .datatypes import Room, RoomEntrance |
9 | from .items import ALL_ITEM_TABLE, LingoItem | 9 | from .items import ALL_ITEM_TABLE, ITEMS_BY_GROUP, LingoItem |
10 | from .locations import ALL_LOCATION_TABLE | 10 | from .locations import ALL_LOCATION_TABLE, LOCATIONS_BY_GROUP |
11 | from .options import LingoOptions | 11 | from .options import LingoOptions |
12 | from .player_logic import LingoPlayerLogic | 12 | from .player_logic import LingoPlayerLogic |
13 | from .regions import create_regions | 13 | from .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 | ||