Quick fix for has_beam_sword failures

This commit is contained in:
2024-08-11 22:16:33 -05:00
parent 3d1246d279
commit f8e427eae7
2 changed files with 4 additions and 4 deletions

View File

@@ -103,7 +103,7 @@ def dungeon_reentry_rules(world, player, clip: Entrance, dungeon_region: str, du
Rules.add_rule(
clip,
lambda state: state.has("Cape", player)
or state.has_beam_sword(player)
or state.has_sword(player, 2)
or state.has("Beat Agahnim 1", player),
)