Bombbag instead of Bombbags

This commit is contained in:
StructuralMike
2021-08-11 16:29:12 +02:00
parent 44efe51e02
commit dcba2be757
14 changed files with 39 additions and 39 deletions

View File

@@ -1162,7 +1162,7 @@ def standard_rules(world, player):
def bomb_escape_rule():
loc = world.get_location("Link's Uncle", player)
return loc.item and loc.item.name in ['Bomb Upgrade (+10)' if world.bombbags[player] else 'Bombs (10)']
return loc.item and loc.item.name in ['Bomb Upgrade (+10)' if world.bombbag[player] else 'Bombs (10)']
def standard_escape_rule(state):
return state.can_kill_most_things(player) or bomb_escape_rule()