From d70b6cfb4281fe41d93a621f271b832db56e396c Mon Sep 17 00:00:00 2001 From: Josh Gerson Date: Sat, 12 Mar 2022 22:22:51 -0500 Subject: [PATCH] Ice Antechamber pots 3,4 require hammer --- Rules.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rules.py b/Rules.py index aa39a467..e96a483a 100644 --- a/Rules.py +++ b/Rules.py @@ -750,7 +750,7 @@ def pot_rules(world, player): for pot in ['Ice Antechamber Pot #3', 'Ice Antechamber Pot #4']: loc = world.get_location_unsafe(pot, player) if loc: - set_rule(loc, lambda state: state.can_lift_rocks(player)) + set_rule(loc, lambda state: state.has('Hammer', player) and state.can_lift_rocks(player)) loc = world.get_location_unsafe('Mire Spikes Pot #3', player) if loc: set_rule(loc, lambda state: (state.world.can_take_damage and state.has_hearts(player, 4))