Webhost: Fix Sphere Tracker crashing on item links (#4855)

This commit is contained in:
qwint
2025-04-09 20:29:11 -05:00
committed by GitHub
parent b7263edfd0
commit e3b8a60584

View File

@@ -616,7 +616,7 @@ class MultiWorld():
locations: Set[Location] = set()
events: Set[Location] = set()
for location in self.get_filled_locations():
if type(location.item.code) is int:
if type(location.item.code) is int and type(location.address) is int:
locations.add(location)
else:
events.add(location)