better seed gen stuff
This commit is contained in:
parent
8db19e544e
commit
2b44792f70
2
Fill.py
2
Fill.py
|
@ -227,7 +227,7 @@ def distribute_items_restrictive(world, gftower_trash=False, fill_locations=None
|
||||||
|
|
||||||
# fill in gtower locations with trash first
|
# fill in gtower locations with trash first
|
||||||
for player in range(1, world.players + 1):
|
for player in range(1, world.players + 1):
|
||||||
if not gftower_trash or not world.ganonstower_vanilla[player]:
|
if not gftower_trash or not world.ganonstower_vanilla[player] or world.logic[player] == 'owglitches':
|
||||||
continue
|
continue
|
||||||
|
|
||||||
gftower_trash_count = (random.randint(15, 50) if world.goal[player] == 'triforcehunt' else random.randint(0, 15))
|
gftower_trash_count = (random.randint(15, 50) if world.goal[player] == 'triforcehunt' else random.randint(0, 15))
|
||||||
|
|
|
@ -398,6 +398,7 @@ def get_pool_core(progressive, shuffle, difficulty, timer, goal, mode, swords, r
|
||||||
if logic in ['owglitches', 'nologic']:
|
if logic in ['owglitches', 'nologic']:
|
||||||
precollected_items.append('Pegasus Boots')
|
precollected_items.append('Pegasus Boots')
|
||||||
pool.remove('Pegasus Boots')
|
pool.remove('Pegasus Boots')
|
||||||
|
pool.extend(['Rupees (20)'])
|
||||||
|
|
||||||
if want_progressives():
|
if want_progressives():
|
||||||
pool.extend(progressivegloves)
|
pool.extend(progressivegloves)
|
||||||
|
|
Loading…
Reference in New Issue