Fixed issue with Mixed and Crossed getting turned on incorrectly in Mystery

This commit is contained in:
codemann8
2021-08-20 08:09:45 -05:00
parent ed1332b691
commit b130b0b76b

View File

@@ -133,9 +133,9 @@ def roll_settings(weights):
overworld_shuffle = get_choice('overworld_shuffle') overworld_shuffle = get_choice('overworld_shuffle')
ret.ow_shuffle = overworld_shuffle if overworld_shuffle != 'none' else 'vanilla' ret.ow_shuffle = overworld_shuffle if overworld_shuffle != 'none' else 'vanilla'
ret.ow_crossed = get_choice('overworld_crossed')
ret.ow_keepsimilar = get_choice('overworld_keepsimilar') ret.ow_keepsimilar = get_choice('overworld_keepsimilar')
ret.ow_mixed = get_choice('overworld_mixed') ret.ow_crossed = get_choice('overworld_crossed') == 'on'
ret.ow_mixed = get_choice('overworld_mixed') == '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'
entrance_shuffle = get_choice('entrance_shuffle') entrance_shuffle = get_choice('entrance_shuffle')