From b33774001d4ee4837f5e86fbcab12dcf0667b9e9 Mon Sep 17 00:00:00 2001 From: periwinkle Date: Thu, 11 Jul 2019 15:06:57 -0400 Subject: [PATCH] Fix more requirements --- src/database/world_graph.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/database/world_graph.lua b/src/database/world_graph.lua index e270ef5..a32ae70 100644 --- a/src/database/world_graph.lua +++ b/src/database/world_graph.lua @@ -141,7 +141,7 @@ function grasstownEast:new(worldGraph) return false end - self.locations.kazuma2.requirements = function(self, items) return _has(items, "eventFans") end + self.locations.kazuma2.requirements = function(self, items) return _has(items, "rustyKey") end self.locations.execution.requirements = function(self, items) return _has(items, "weaponSN") end self.locations.hutChest.requirements = function(self, items) return _has(items, "eventFans") or _has(items, "flight") end self.locations.gumChest.requirements = function(self, items) @@ -150,7 +150,7 @@ function grasstownEast:new(worldGraph) end return false end - self.locations.malco.requirements = function(self, items) return _has(items, "eventFans") and _has(items, "juice") and _has(items, "charcoal") and _has(items, "gum") end + self.locations.malco.requirements = function(self, items) return _has(items, "eventFans") and _has(items, "juice") and _has(items, "charcoal") and _has(items, "gumBase") end self.locations.eventFans.requirements = function(self, items) return _has(items, "rustyKey") and _has(items, "weaponBoss") end self.locations.eventFans:setItem(self.world.items:getByKey("eventFans")) @@ -376,7 +376,7 @@ function plantation:new(worldGraph) self.locations.curlyShroom.requirements = function(self, items) return _has(items, "eventCurly") and _has(items, "maPignon") end self.locations.eventRocket.requirements = function(self, items) - return _has(items, "letter") and _has(items, "booster") and _has(items, "controller") and _has(items, "sprinkler") + return _has(items, "letter") and _has(items, "booster") and _has(items, "controller") and _has(items, "newSprinkler") end self.locations.eventRocket:setItem(self.world.items:getByKey("eventRocket")) end