Standard generation bugs fixed

This commit is contained in:
aerinon
2021-04-29 15:19:50 -06:00
parent ab5458cf1a
commit 817833d0fa
3 changed files with 6 additions and 2 deletions

View File

@@ -555,7 +555,7 @@ def find_portal_candidates(door_list, dungeon, need_passage=False, dead_end_allo
if not dead_end_allowed:
ret = [x for x in ret if not x.deadEnd]
if standard:
ret = [x for x in ret if not x.standard_restrict]
ret = [x for x in ret if not x.standard_restricted]
return ret