Edge rom changes and minor mystery defensive coding

This commit is contained in:
aerinon
2020-05-02 15:09:23 -06:00
parent 79c4889e07
commit 0705ccaeda
3 changed files with 3 additions and 3 deletions

View File

@@ -151,7 +151,7 @@ def roll_settings(weights):
ret.door_shuffle = door_shuffle if door_shuffle != 'none' else 'vanilla'
ret.experimental = get_choice('experimental') == 'on'
ret.dungeon_counters = get_choice('dungeon_counters')
ret.dungeon_counters = get_choice('dungeon_counters') if 'dungeon_counters' in weights else 'default'
if ret.dungeon_counters == 'default':
ret.dungeon_counters = 'pickup' if ret.door_shuffle != 'vanilla' or ret.compassshuffle == 'on' else 'off'