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__.py3
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
9from .datatypes import Room, RoomEntrance 9from .datatypes import Room, RoomEntrance
10from .items import ALL_ITEM_TABLE, ITEMS_BY_GROUP, TRAP_ITEMS, LingoItem 10from .items import ALL_ITEM_TABLE, ITEMS_BY_GROUP, TRAP_ITEMS, LingoItem
11from .locations import ALL_LOCATION_TABLE, LOCATIONS_BY_GROUP 11from .locations import ALL_LOCATION_TABLE, LOCATIONS_BY_GROUP
12from .options import LingoOptions 12from .options import LingoOptions, lingo_option_groups
13from .player_logic import LingoPlayerLogic 13from .player_logic import LingoPlayerLogic
14from .regions import create_regions 14from .regions import create_regions
15 15
16 16
17class LingoWebWorld(WebWorld): 17class 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",