From d7d437c834822f54feb846961d73065400481a77 Mon Sep 17 00:00:00 2001 From: Alex Gilbert Date: Wed, 22 Nov 2023 10:11:52 -0500 Subject: [PATCH] - Fix typo during conflict resolution --- worlds/stardew_valley/items.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worlds/stardew_valley/items.py b/worlds/stardew_valley/items.py index 4aad9cfa2db7..1f0735f4aebc 100644 --- a/worlds/stardew_valley/items.py +++ b/worlds/stardew_valley/items.py @@ -480,7 +480,7 @@ def fill_with_resource_packs_and_traps(item_factory: StardewItemFactory, options if include_traps: priority_filler_items.extend(trap_items) - exclude_ginger_island = options.excludeGingerIsland == ExcludeGingerIsland.option_true + exclude_ginger_island = options.exclude_ginger_island == ExcludeGingerIsland.option_true all_filler_packs = get_all_filler_items(include_traps, exclude_ginger_island) priority_filler_items = remove_excluded_packs(priority_filler_items, exclude_ginger_island)