From 7fc3929280b1223f7f38065615fb23274f1b4504 Mon Sep 17 00:00:00 2001 From: codemann8 Date: Thu, 29 Dec 2022 18:44:07 -0600 Subject: [PATCH] Fixed follower logic to use new dynamic mirror connections --- BaseClasses.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BaseClasses.py b/BaseClasses.py index 3e83b69f..532daced 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -1585,7 +1585,7 @@ class Entrance(object): if len(self.connected_region.locations) > 0 and self.connected_region.locations[0].item: item_name = self.connected_region.locations[0].item.name for loc in self.parent_region.locations: - if loc.event and not loc.real and loc.item.name.find('Farmable') < 0: + if loc.event and not loc.real and loc.item and loc.item.name.find('Farmable') < 0: item_name = loc.item.name break path = (item_name, (self.parent_region.name, path))