Fix generation issues in HMG

This commit is contained in:
codemann8
2024-03-22 05:24:10 -05:00
parent 4dd334f66e
commit da749e4a11
3 changed files with 6 additions and 5 deletions

View File

@@ -66,6 +66,7 @@ def create_hybridmajor_connectors(world, player):
specrock_connectors,
]:
new_connectors = [(connector[0], connector[1], world.get_entrance(connector[2], player).connected_region) for connector in connectors]
new_connectors = [c for c in new_connectors if c[2] is not None]
create_no_logic_connections(player, world, new_connectors)