Msu minor fix

Bosses simple fix
Boss shuffle mystery fix
This commit is contained in:
aerinon
2021-06-01 14:52:23 -06:00
parent 87c4c0811a
commit e0479922cc
6 changed files with 12 additions and 6 deletions

View File

@@ -174,7 +174,7 @@ def place_bosses(world, player):
boss_locations.remove(['Ice Palace', None])
placeable_bosses.remove('Kholdstare')
if world.boss_shuffle[player] == "basic": # vanilla bosses shuffled
if world.boss_shuffle[player] == "simple": # vanilla bosses shuffled
bosses = placeable_bosses + ['Armos Knights', 'Lanmolas', 'Moldorm']
else: # all bosses present, the three duplicates chosen at random
bosses = all_bosses + [random.choice(placeable_bosses) for _ in range(3)]