From 4257552b5162be15c86cbf6deff7afa2393381cf Mon Sep 17 00:00:00 2001 From: CookieCat <81494827+CookieCat45@users.noreply.github.com> Date: Mon, 13 May 2024 13:52:11 -0400 Subject: [PATCH] Update worlds/ahit/Regions.py Co-authored-by: Aaron Wagener --- worlds/ahit/Regions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worlds/ahit/Regions.py b/worlds/ahit/Regions.py index d7898703bf..e1c9159f94 100644 --- a/worlds/ahit/Regions.py +++ b/worlds/ahit/Regions.py @@ -627,7 +627,7 @@ def is_valid_act_combo(world: "HatInTimeWorld", entrance_act: Region, if entrance_act.name in blacklisted_combos.keys() and exit_act.name in blacklisted_combos[entrance_act.name]: return False - if len(world.options.ActBlacklist) > 0: + if world.options.ActBlacklist: act_blacklist = world.options.ActBlacklist.get(entrance_act.name) if act_blacklist is not None and exit_act.name in act_blacklist: return False