Fixed Timespinner generation *oops*

This commit is contained in:
Jarno Westhof 2021-10-09 15:53:18 +02:00 committed by Fabian Dill
parent ba13d2179d
commit b539892cc0
1 changed files with 1 additions and 1 deletions

View File

@ -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]: 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"): if is_option_enabled(world, player, "StartWithJewelryBox"):
excluded_items.add('Jewelry Box') excluded_items.add('Jewelry Box')