diff --git a/worlds/tunic/er_data.py b/worlds/tunic/er_data.py index 4143c77c5b..7b44758698 100644 --- a/worlds/tunic/er_data.py +++ b/worlds/tunic/er_data.py @@ -553,9 +553,9 @@ class DeadEnd(IntEnum): # key is the AP region name. "Fake" in region info just means the mod won't receive that info at all tunic_er_regions: Dict[str, RegionInfo] = { - "Menu": RegionInfo("Fake", dead_end=DeadEnd.all_cats, is_fake_region=True), + "Menu": RegionInfo("Fake", dead_end=DeadEnd.all_cats), "Overworld": RegionInfo("Overworld Redux"), # main overworld, the central area - "Overworld Holy Cross": RegionInfo("Fake", dead_end=DeadEnd.all_cats, is_fake_region=True), # main overworld holy cross checks + "Overworld Holy Cross": RegionInfo("Fake", dead_end=DeadEnd.all_cats), # main overworld holy cross checks "Overworld Belltower": RegionInfo("Overworld Redux"), # the area with the belltower and chest "Overworld Belltower at Bell": RegionInfo("Overworld Redux"), # being able to ring the belltower, basically "Overworld Swamp Upper Entry": RegionInfo("Overworld Redux"), # upper swamp entry spot diff --git a/worlds/tunic/er_scripts.py b/worlds/tunic/er_scripts.py index c05b247e14..92b02d9ba2 100644 --- a/worlds/tunic/er_scripts.py +++ b/worlds/tunic/er_scripts.py @@ -329,7 +329,7 @@ def pair_portals(world: "TunicWorld", regions: Dict[str, Region]) -> Dict[Portal non_dead_end_regions = set() for region_name, region_info in world.er_regions.items(): # these are not real regions, they are just here to be descriptive - if region_info.is_fake_region or region_name == "Shop": + if region_name == "Shop": continue # dead ends aren't real in decoupled if decoupled: