Torch+ChestKey counter bug fixed
Total Keys on keysanity menu fixed Changed X and grayish circular symbol for new O character Fixed a key logic error Fixed unplaced items bug to remove red rupees
This commit is contained in:
@@ -265,7 +265,7 @@ def generate_itempool(world, player):
|
||||
if player in world.pool_adjustment.keys():
|
||||
amt = world.pool_adjustment[player]
|
||||
if amt < 0:
|
||||
for _ in range(0, amt):
|
||||
for _ in range(amt, 0):
|
||||
pool.remove('Rupees (20)')
|
||||
elif amt > 0:
|
||||
for _ in range(0, amt):
|
||||
|
||||
Reference in New Issue
Block a user