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:
parent
db0c0a2e83
commit
3ef9c78c3e
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in New Issue