Fix for 'Dark Sanctuary Hint' not being a possible take-any location...

...for player numbers after the first inverted retro player.
This commit is contained in:
CaitSith2 2020-08-31 14:59:25 -07:00
parent db0c0a2e83
commit 3ef9c78c3e
1 changed files with 2 additions and 0 deletions

View File

@ -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)