Fixed Namespace error in Mystery with Bonk Drop option

This commit is contained in:
codemann8
2022-07-24 20:57:58 -05:00
parent 9ef8f54e5b
commit 3983bf347f

View File

@@ -174,7 +174,7 @@ def roll_settings(weights):
ret.ow_whirlpool = get_choice('whirlpool_shuffle') == 'on' ret.ow_whirlpool = get_choice('whirlpool_shuffle') == 'on'
overworld_flute = get_choice('flute_shuffle') overworld_flute = get_choice('flute_shuffle')
ret.ow_fluteshuffle = overworld_flute if overworld_flute != 'none' else 'vanilla' ret.ow_fluteshuffle = overworld_flute if overworld_flute != 'none' else 'vanilla'
ret.shuffle_bonk_drops = get_choice('bonk_drops') == 'on' ret.bonk_drops = get_choice('bonk_drops') == 'on'
entrance_shuffle = get_choice('entrance_shuffle') entrance_shuffle = get_choice('entrance_shuffle')
ret.shuffle = entrance_shuffle if entrance_shuffle != 'none' else 'vanilla' ret.shuffle = entrance_shuffle if entrance_shuffle != 'none' else 'vanilla'
overworld_map = get_choice('overworld_map') overworld_map = get_choice('overworld_map')