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:
aerinon
2020-08-18 15:21:35 -06:00
parent 49e799f658
commit 18447cfe3e
7 changed files with 16 additions and 12 deletions

View File

@@ -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):