diff options
Diffstat (limited to '__init__.py')
-rw-r--r-- | __init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/__init__.py b/__init__.py index 113c392..fa24fdc 100644 --- a/__init__.py +++ b/__init__.py | |||
@@ -9,12 +9,13 @@ from worlds.AutoWorld import WebWorld, World | |||
9 | from .datatypes import Room, RoomEntrance | 9 | from .datatypes import Room, RoomEntrance |
10 | from .items import ALL_ITEM_TABLE, ITEMS_BY_GROUP, TRAP_ITEMS, LingoItem | 10 | from .items import ALL_ITEM_TABLE, ITEMS_BY_GROUP, TRAP_ITEMS, LingoItem |
11 | from .locations import ALL_LOCATION_TABLE, LOCATIONS_BY_GROUP | 11 | from .locations import ALL_LOCATION_TABLE, LOCATIONS_BY_GROUP |
12 | from .options import LingoOptions | 12 | from .options import LingoOptions, lingo_option_groups |
13 | from .player_logic import LingoPlayerLogic | 13 | from .player_logic import LingoPlayerLogic |
14 | from .regions import create_regions | 14 | from .regions import create_regions |
15 | 15 | ||
16 | 16 | ||
17 | class LingoWebWorld(WebWorld): | 17 | class LingoWebWorld(WebWorld): |
18 | option_groups = lingo_option_groups | ||
18 | theme = "grass" | 19 | theme = "grass" |
19 | tutorials = [Tutorial( | 20 | tutorials = [Tutorial( |
20 | "Multiworld Setup Guide", | 21 | "Multiworld Setup Guide", |