SMZ3: Fix Itemlinks with link_replacement #4099

This commit is contained in:
Silvris 2025-01-19 06:17:12 -06:00 committed by GitHub
parent 9183e8f9c9
commit 9e353ebb8e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 15 additions and 0 deletions

View File

@ -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