summary refs log tree commit diff stats
path: root/__init__.py
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2024-05-22 20:22:39 -0400
committerGitHub <noreply@github.com>2024-05-23 02:22:39 +0200
commit0095771ce091035e001e2ff8556e2656a0498338 (patch)
treefa49d181376084ee5db4e1c0f6473ed46ed7dfe7 /__init__.py
parente41bdceb052334f2c86a78ba41411a9c85df7cc5 (diff)
downloadlingo-apworld-0095771ce091035e001e2ff8556e2656a0498338.tar.gz
lingo-apworld-0095771ce091035e001e2ff8556e2656a0498338.tar.bz2
lingo-apworld-0095771ce091035e001e2ff8556e2656a0498338.zip
Lingo: Add option groups (#3352)
* Lingo: Add option groups

* Touched up option docstrings
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",