Remove doors specific argument.

This commit is contained in:
CaitSith2 2020-10-29 15:32:05 -07:00
parent 008e84c9a0
commit d79147fc58
1 changed files with 1 additions and 1 deletions

View File

@ -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: