Merged DR v0.4.0.2

This commit is contained in:
codemann8
2021-05-16 04:50:44 -05:00
12 changed files with 61 additions and 34 deletions

View File

@@ -379,8 +379,11 @@ 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')
if world.mode[player] == 'inverted':
if 'Dark Sanctuary Hint' in take_any_locations:
take_any_locations.remove('Dark Sanctuary Hint')
if 'Archery Game' in take_any_locations:
take_any_locations.remove('Archery Game')
regions = random.sample(take_any_locations, 5)