From 92892af0dfefadd00f7681811fd20aaefed1e59f Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Wed, 4 Feb 2026 13:32:05 -0500 Subject: Start with Sun Symbol if doing daed only symbol shuffle --- apworld/__init__.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'apworld/__init__.py') diff --git a/apworld/__init__.py b/apworld/__init__.py index 27ed95a..5bad63e 100644 --- a/apworld/__init__.py +++ b/apworld/__init__.py @@ -120,6 +120,9 @@ class Lingo2World(World): self.multiworld.itempool += pool + for name in self.player_logic.starting_items: + self.push_precollected(self.create_item(name)) + def create_item(self, name: str) -> Item: return Lingo2Item(name, ItemClassification.filler if name == self.get_filler_item_name() else ItemClassification.trap if name in ANTI_COLLECTABLE_TRAPS else -- cgit 1.4.1