Skip to content

Commit 9e353eb

Browse files
authored
SMZ3: Fix Itemlinks with link_replacement #4099
1 parent 9183e8f commit 9e353eb

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

worlds/smz3/__init__.py

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,21 @@ def __init__(self, world: MultiWorld, player: int):
8787
self.rom_name_available_event = threading.Event()
8888
self.locations: Dict[str, Location] = {}
8989
self.unreachable = []
90+
self.junkItemsNames = [item.name for item in [
91+
ItemType.Arrow,
92+
ItemType.OneHundredRupees,
93+
ItemType.TenArrows,
94+
ItemType.ThreeBombs,
95+
ItemType.OneRupee,
96+
ItemType.FiveRupees,
97+
ItemType.TwentyRupees,
98+
ItemType.FiftyRupees,
99+
ItemType.ThreeHundredRupees,
100+
ItemType.ETank,
101+
ItemType.Missile,
102+
ItemType.Super,
103+
ItemType.PowerBomb
104+
]]
90105
super().__init__(world, player)
91106

92107
@classmethod

0 commit comments

Comments
 (0)