fix chaos boss shuffle in mystery being vanilla, and prevent that mistake in the future
This commit is contained in:
parent
d03dc8f8bf
commit
76f9717c99
|
@ -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)])
|
can_place_boss(world, player, boss, loc, level) for loc, level in remaining_boss_locations)])
|
||||||
for loc, level in remaining_boss_locations:
|
for loc, level in remaining_boss_locations:
|
||||||
place_boss(world, player, remaining_boss, loc, level)
|
place_boss(world, player, remaining_boss, loc, level)
|
||||||
|
else:
|
||||||
|
raise FillError(f"Could not find boss shuffle mode {world.boss_shuffle[player]}")
|
||||||
|
|
|
@ -337,7 +337,7 @@ def roll_settings(weights):
|
||||||
ret.shufflebosses = {'none': 'none',
|
ret.shufflebosses = {'none': 'none',
|
||||||
'simple': 'basic',
|
'simple': 'basic',
|
||||||
'full': 'normal',
|
'full': 'normal',
|
||||||
'random': 'random',
|
'random': 'chaos',
|
||||||
'singularity': 'singularity',
|
'singularity': 'singularity',
|
||||||
'duality': 'singularity'
|
'duality': 'singularity'
|
||||||
}[get_choice('boss_shuffle', weights)]
|
}[get_choice('boss_shuffle', weights)]
|
||||||
|
|
Loading…
Reference in New Issue