Merged in DR v0.5.0.2

This commit is contained in:
codemann8
2021-08-13 04:58:27 -05:00
21 changed files with 274 additions and 53 deletions

View File

@@ -1553,7 +1553,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.bomblogic[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()