From 9eba1d4c40518970021c23cccd856f7fdb551e60 Mon Sep 17 00:00:00 2001 From: codemann8 Date: Thu, 2 Jan 2025 22:58:07 -0600 Subject: [PATCH] Fixed issue with prize shuffle where HMG uses cross dungeon paths to show prize on map --- BaseClasses.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BaseClasses.py b/BaseClasses.py index 98f20269..d913721d 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -2820,7 +2820,7 @@ class Item(object): def explore_region(region): explored_regions.append(region.name) for ent in region.entrances: - if ent.parent_region is not None and ent.spot_type != 'OWG': + if ent.parent_region is not None and ent.spot_type not in ['OWG', 'HMG']: if ent.parent_region.type in [RegionType.LightWorld, RegionType.DarkWorld]: return ent elif ent.parent_region.name not in explored_regions: