Fixed issue with small key shuffle when big keys aren't
This commit is contained in:
3
Fill.py
3
Fill.py
@@ -48,6 +48,9 @@ def fill_dungeons_restrictive(world, shuffled_locations):
|
||||
bigs, smalls, others = [], [], []
|
||||
for i in dungeon_items:
|
||||
(bigs if i.bigkey else smalls if i.smallkey else others).append(i)
|
||||
for i in world.itempool:
|
||||
if i.smallkey and world.keyshuffle[i.player]:
|
||||
smalls.append(i)
|
||||
|
||||
def fill(base_state, items, key_pool):
|
||||
fill_restrictive(world, base_state, shuffled_locations, items, key_pool, True)
|
||||
|
||||
Reference in New Issue
Block a user