From 2ef442290bb4a64db2387e41065dad33926be50f Mon Sep 17 00:00:00 2001 From: CookieCat Date: Thu, 31 Aug 2023 22:11:09 -0400 Subject: [PATCH] Update Regions.py --- worlds/ahit/Regions.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/worlds/ahit/Regions.py b/worlds/ahit/Regions.py index 61be4813a9..ba839a1810 100644 --- a/worlds/ahit/Regions.py +++ b/worlds/ahit/Regions.py @@ -436,6 +436,12 @@ def randomize_act_entrances(world: World): region_list.remove(region) region_list.append(region) + # We want to do these first as well, since they can be blocked from being shuffled onto freeroam + for region in region_list.copy(): + if region.name in chapter_finales or region.name == "Cheating the Race": + region_list.remove(region) + region_list.append(region) + # Reverse the list, so we can do what we want to do first region_list.reverse()