From b539892cc0561eb188dd0821e36321339f7d1830 Mon Sep 17 00:00:00 2001 From: Jarno Westhof Date: Sat, 9 Oct 2021 15:53:18 +0200 Subject: [PATCH] Fixed Timespinner generation *oops* --- worlds/timespinner/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worlds/timespinner/__init__.py b/worlds/timespinner/__init__.py index dae726ba..e58d0d92 100644 --- a/worlds/timespinner/__init__.py +++ b/worlds/timespinner/__init__.py @@ -85,7 +85,7 @@ def create_item(name: str, player: int) -> Item: def get_excluded_items_based_on_options(world: MultiWorld, player: int) -> Set[str]: - excluded_items: Set[str] = [] + excluded_items: Set[str] = set() if is_option_enabled(world, player, "StartWithJewelryBox"): excluded_items.add('Jewelry Box')