Remove redundant rule

This commit is contained in:
Scipio Wright
2024-07-16 23:04:55 -04:00
parent 8d2fb0625e
commit 27f132d4cd

View File

@@ -1570,7 +1570,7 @@ def set_er_location_rules(world: "TunicWorld") -> None:
set_rule(multiworld.get_location("Fortress Arena - Siege Engine/Vault Key Pickup", player),
lambda state: has_sword(state, player))
set_rule(multiworld.get_location("Librarian - Hexagon Green", player),
lambda state: has_sword(state, player) and has_ladder("Ladders in Library", state, world)
lambda state: has_sword(state, player)
and has_ladder("Ladders in Library", state, world))
set_rule(multiworld.get_location("Rooted Ziggurat Lower - Hexagon Blue", player),
lambda state: has_sword(state, player))