Only pre-open pyramid if ER falls within vanilla/dungeonssimple/dungeonsfull

This commit is contained in:
Fabian Dill
2020-09-11 03:23:00 +02:00
parent 99517021c8
commit da01325abd
4 changed files with 11 additions and 7 deletions

View File

@@ -302,7 +302,9 @@ def roll_settings(weights):
'ganon_triforce_hunt': 'ganontriforcehunt',
'local_ganon_triforce_hunt': 'localganontriforcehunt'
}[goal]
ret.openpyramid = goal in ['fast_ganon', 'ganon_triforce_hunt', 'local_ganon_triforce_hunt']
ret.open_pyramid = goal in ['fast_ganon', 'ganon_triforce_hunt', 'local_ganon_triforce_hunt'] \
and ret.shuffle in {"vanilla", "dungeonssimple", "dungeonsfull"}
ret.crystals_gt = get_choice('tower_open', weights)