From 989dcab511903f88449884941b6af092b600e810 Mon Sep 17 00:00:00 2001 From: CookieCat Date: Sun, 12 May 2024 16:36:02 -0400 Subject: [PATCH] a --- worlds/ahit/Regions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/worlds/ahit/Regions.py b/worlds/ahit/Regions.py index 87b1d21f1e..d7898703bf 100644 --- a/worlds/ahit/Regions.py +++ b/worlds/ahit/Regions.py @@ -446,7 +446,7 @@ def create_tasksanity_locations(world: "HatInTimeWorld"): def randomize_act_entrances(world: "HatInTimeWorld"): - region_list: List[Region] = get_act_regions(world) + region_list: List[Region] = get_shuffleable_act_regions(world) world.random.shuffle(region_list) region_list.sort(key=sort_acts) candidate_list: List[Region] = region_list.copy() @@ -676,7 +676,7 @@ def connect_time_rift(world: "HatInTimeWorld", time_rift: Region, exit_region: R i += 1 -def get_act_regions(world: "HatInTimeWorld") -> List[Region]: +def get_shuffleable_act_regions(world: "HatInTimeWorld") -> List[Region]: act_list: List[Region] = [] for region in world.multiworld.get_regions(world.player): if region.name in chapter_act_info.keys():