From 6641d428a2511fa6ee984e64ae393b41341822f9 Mon Sep 17 00:00:00 2001 From: espeon65536 Date: Fri, 14 Jan 2022 09:58:25 -0500 Subject: [PATCH] oot: check item name for skip child zelda, not the actual item itself --- worlds/oot/Rules.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worlds/oot/Rules.py b/worlds/oot/Rules.py index 7ef75640e2..c55407b485 100644 --- a/worlds/oot/Rules.py +++ b/worlds/oot/Rules.py @@ -143,7 +143,7 @@ def set_rules(ootworld): if ootworld.skip_child_zelda: # If skip child zelda is on, the item at Song from Impa must be giveable by the save context. location = world.get_location('Song from Impa', player) - add_item_rule(location, lambda item: item in SaveContext.giveable_items) + add_item_rule(location, lambda item: item.name in SaveContext.giveable_items) for name in ootworld.always_hints: add_rule(world.get_location(name, player), guarantee_hint)