From 3ef9c78c3e5abcc6ded4b2741019aee7540918fa Mon Sep 17 00:00:00 2001 From: CaitSith2 Date: Mon, 31 Aug 2020 14:59:25 -0700 Subject: [PATCH] Fix for 'Dark Sanctuary Hint' not being a possible take-any location... ...for player numbers after the first inverted retro player. --- ItemPool.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ItemPool.py b/ItemPool.py index c41dafaa..c7bfa760 100644 --- a/ItemPool.py +++ b/ItemPool.py @@ -414,6 +414,8 @@ take_any_locations = [ def set_up_take_anys(world, player): if world.mode[player] == 'inverted' and 'Dark Sanctuary Hint' in take_any_locations: take_any_locations.remove('Dark Sanctuary Hint') + elif world.mode[player] != 'inverted' and 'Dark Sanctuary Hint' not in take_any_locations: + take_any_locations.append('Dark Sanctuary Hint') regions = world.random.sample(take_any_locations, 5)