From b42b6034e1e64ba7180c436c56bb2b1253a73c91 Mon Sep 17 00:00:00 2001 From: codemann8 Date: Tue, 5 Oct 2021 20:26:49 -0500 Subject: [PATCH] Fixed generation error on Houlihan connection line --- EntranceShuffle.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EntranceShuffle.py b/EntranceShuffle.py index b55a8673..25741283 100644 --- a/EntranceShuffle.py +++ b/EntranceShuffle.py @@ -857,7 +857,7 @@ def link_entrances(world, player): # ensure Houlihan exits where Links House does # TODO: Plando should overrule this for links_house in world.get_entrance('Links House Exit', player).connected_region.exits: - if links_house.connected_region.name == 'Links House': + if links_house.connected_region and links_house.connected_region.name == 'Links House': break connect_exit(world, 'Chris Houlihan Room Exit', links_house.name, player)