From cbb85e3baa41016e534bb6330aae063311136a6a Mon Sep 17 00:00:00 2001 From: magical Date: Mon, 5 Feb 2024 20:30:46 -0800 Subject: [PATCH] fix items not being placed on bosses bosses were considered unreachable when LimitArea was in effect because they don't have a sector identifier (e.g. "S2") in their names. this also affected non-boss things like the "Pump Control". now the randomizer can actually require you to lower the water! --- Fusion_Graph.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Fusion_Graph.py b/Fusion_Graph.py index c281e74..f355941 100644 --- a/Fusion_Graph.py +++ b/Fusion_Graph.py @@ -230,7 +230,7 @@ class Game: continue if point in path: continue - if LimitArea: + if LimitArea and point != end: for area in range(0, 7): if 'S{}'.format(area) in start: if 'S{}'.format(area) not in point: