From e3b8a60584524e5dbb24cfc1542a3acb92da9360 Mon Sep 17 00:00:00 2001 From: qwint Date: Wed, 9 Apr 2025 20:29:11 -0500 Subject: [PATCH] Webhost: Fix Sphere Tracker crashing on item links (#4855) --- BaseClasses.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BaseClasses.py b/BaseClasses.py index 4db39179..4074108b 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -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)