Fixed default TF pieces in Trinity

This commit is contained in:
codemann8
2022-05-16 14:02:30 -05:00
parent 4d550a38e8
commit f708a3155e
3 changed files with 470 additions and 2 deletions

View File

@@ -759,9 +759,11 @@ def get_pool_core(progressive, shuffle, difficulty, treasure_hunt_total, timer,
placed_items = {}
precollected_items = []
clock_mode = None
if goal in ['triforcehunt', 'trinity']:
if treasure_hunt_total == 0:
if treasure_hunt_total == 0:
if goal == 'triforcehunt':
treasure_hunt_total = 30
elif goal == 'trinity':
treasure_hunt_total = 10
triforcepool = ['Triforce Piece'] * int(treasure_hunt_total)
pool.extend(alwaysitems)