From d79147fc58af75e2ee6609db8afa216f9622725f Mon Sep 17 00:00:00 2001 From: CaitSith2 Date: Thu, 29 Oct 2020 15:32:05 -0700 Subject: [PATCH] Remove doors specific argument. --- Main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Main.py b/Main.py index 947d1473..e099cf47 100644 --- a/Main.py +++ b/Main.py @@ -308,7 +308,7 @@ def main(args, seed=None): checks_in_area[player]["Total"] = 0 for location in [loc for loc in world.get_filled_locations() if type(loc.address) is int]: - main_entrance = get_entrance_to_region(location.parent_region, []) + main_entrance = get_entrance_to_region(location.parent_region) if location.parent_region.dungeon: checks_in_area[location.player][location.parent_region.dungeon.name].append(location.address) elif main_entrance.parent_region.type == RegionType.LightWorld: