From 9e353ebb8e2661bcdc95b11ff6520bcb6379368f Mon Sep 17 00:00:00 2001
From: Silvris <58583688+Silvris@users.noreply.github.com>
Date: Sun, 19 Jan 2025 06:17:12 -0600
Subject: [PATCH] =?UTF-8?q?SMZ3:=20Fix=20Itemlinks=20with=20link=5Freplace?=
 =?UTF-8?q?ment=C2=A0#4099?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 worlds/smz3/__init__.py | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/worlds/smz3/__init__.py b/worlds/smz3/__init__.py
index 5998db8e..7ebec7d4 100644
--- a/worlds/smz3/__init__.py
+++ b/worlds/smz3/__init__.py
@@ -87,6 +87,21 @@ class SMZ3World(World):
         self.rom_name_available_event = threading.Event()
         self.locations: Dict[str, Location] = {}
         self.unreachable = []
+        self.junkItemsNames = [item.name for item in [
+            ItemType.Arrow,
+            ItemType.OneHundredRupees,
+            ItemType.TenArrows,
+            ItemType.ThreeBombs,
+            ItemType.OneRupee,
+            ItemType.FiveRupees,
+            ItemType.TwentyRupees,
+            ItemType.FiftyRupees,
+            ItemType.ThreeHundredRupees,
+            ItemType.ETank,
+            ItemType.Missile,
+            ItemType.Super,
+            ItemType.PowerBomb
+        ]]
         super().__init__(world, player)
 
     @classmethod