OoT: ice traps have the trap attribute

This commit is contained in:
espeon65536
2022-02-11 23:20:24 -06:00
committed by Fabian Dill
parent 8d260708d3
commit 54c7ec5873

View File

@@ -33,6 +33,7 @@ class OOTItem(Item):
self.looks_like_item = None self.looks_like_item = None
self.price = special.get('price', None) if special else None self.price = special.get('price', None) if special else None
self.internal = False self.internal = False
self.trap = name == 'Ice Trap'
if force_not_advancement: if force_not_advancement:
self.never_exclude = True self.never_exclude = True