From 54c7ec5873d71df287a0304f465f9eef622af1f8 Mon Sep 17 00:00:00 2001 From: espeon65536 Date: Fri, 11 Feb 2022 23:20:24 -0600 Subject: [PATCH] OoT: ice traps have the trap attribute --- worlds/oot/Items.py | 1 + 1 file changed, 1 insertion(+) diff --git a/worlds/oot/Items.py b/worlds/oot/Items.py index b9121c72f1..901d677cdd 100644 --- a/worlds/oot/Items.py +++ b/worlds/oot/Items.py @@ -33,6 +33,7 @@ class OOTItem(Item): self.looks_like_item = None self.price = special.get('price', None) if special else None self.internal = False + self.trap = name == 'Ice Trap' if force_not_advancement: self.never_exclude = True