From a825f800a04334ac8a4338c5fe88d7bbce49c022 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Mon, 8 Sep 2025 23:52:05 -0400 Subject: Made sure the apworld unit tests pass --- apworld/__init__.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'apworld/__init__.py') diff --git a/apworld/__init__.py b/apworld/__init__.py index d05bd38..6eeee74 100644 --- a/apworld/__init__.py +++ b/apworld/__init__.py @@ -1,7 +1,7 @@ """ Archipelago init file for Lingo 2 """ -from BaseClasses import ItemClassification, Item +from BaseClasses import ItemClassification, Item, Tutorial from worlds.AutoWorld import WebWorld, World from .items import Lingo2Item from .options import Lingo2Options @@ -13,6 +13,14 @@ from .static_logic import Lingo2StaticLogic class Lingo2WebWorld(WebWorld): rich_text_options_doc = True theme = "grass" + tutorials = [Tutorial( + "Multiworld Setup Guide", + "A guide to playing Lingo 2 with Archipelago.", + "English", + "en_Lingo_2.md", + "setup/en", + ["hatkirby"] + )] class Lingo2World(World): -- cgit 1.4.1