From 9cca25bdc4c7b1d96f7a974545e1fa9d22cfb933 Mon Sep 17 00:00:00 2001 From: aerinon Date: Fri, 2 Sep 2022 13:11:03 -0600 Subject: [PATCH] Modified key fix for Unstable --- Fill.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Fill.py b/Fill.py index d7a97bf2..23058688 100644 --- a/Fill.py +++ b/Fill.py @@ -172,7 +172,7 @@ def valid_key_placement(item, location, key_pool, world): if key_logic.prize_location: prize_loc = world.get_location(key_logic.prize_location, location.player) cr_count = world.crystals_needed_for_gt[location.player] - wild_keys = world.keyshuffle[item.player] != 'none' + wild_keys = world.keyshuffle[item.player] return key_logic.check_placement(unplaced_keys, wild_keys, location if item.bigkey else None, prize_loc, cr_count) else: return not item.is_inside_dungeon_item(world)