SMZ3: Fix Itemlinks with link_replacement #4099
This commit is contained in:
parent
9183e8f9c9
commit
9e353ebb8e
|
@ -87,6 +87,21 @@ class SMZ3World(World):
|
||||||
self.rom_name_available_event = threading.Event()
|
self.rom_name_available_event = threading.Event()
|
||||||
self.locations: Dict[str, Location] = {}
|
self.locations: Dict[str, Location] = {}
|
||||||
self.unreachable = []
|
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)
|
super().__init__(world, player)
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
|
|
Loading…
Reference in New Issue