From 068121a2782ac4a61d5745eb16e9e716be668512 Mon Sep 17 00:00:00 2001 From: duncathan Date: Mon, 2 Mar 2020 06:04:25 -0600 Subject: [PATCH] tiny logic update to prevent the most edge case of softlocks imagine if all weaponSNs were somehow locked behind first cave in arthur mode --- src/database/world_graph.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/database/world_graph.lua b/src/database/world_graph.lua index d1ac35a..094d443 100644 --- a/src/database/world_graph.lua +++ b/src/database/world_graph.lua @@ -31,7 +31,7 @@ function firstCave:new(worldGraph) if self.world:StartPoint() then return true elseif self.world:Arthur() or self.world:Camp() then - return _has(items, "flight") and self.world.regions.mimigaVillage:canAccess(items) + return _has(items, "flight") and _has(items, "weaponSN") and self.world.regions.mimigaVillage:canAccess(items) end end