fix chaos boss shuffle in mystery being vanilla, and prevent that mistake in the future

This commit is contained in:
Fabian Dill 2020-08-25 23:53:15 +02:00
parent d03dc8f8bf
commit 76f9717c99
2 changed files with 3 additions and 1 deletions

View File

@ -252,3 +252,5 @@ def place_bosses(world, player: int):
can_place_boss(world, player, boss, loc, level) for loc, level in remaining_boss_locations)])
for loc, level in remaining_boss_locations:
place_boss(world, player, remaining_boss, loc, level)
else:
raise FillError(f"Could not find boss shuffle mode {world.boss_shuffle[player]}")

View File

@ -337,7 +337,7 @@ def roll_settings(weights):
ret.shufflebosses = {'none': 'none',
'simple': 'basic',
'full': 'normal',
'random': 'random',
'random': 'chaos',
'singularity': 'singularity',
'duality': 'singularity'
}[get_choice('boss_shuffle', weights)]