Update access requirement for Mr. Little

This probably doesn't make any difference at the moment because
Mr. Little's Cemetery location item is fixed, but if the Mr. Little
item ever gets thrown into the mix, then it could matter.
This commit is contained in:
periwinkle 2019-09-12 21:00:39 -04:00
parent 07a33104aa
commit 64a960189a

View file

@ -42,9 +42,7 @@ function mimigaVillage:new(worldGraph)
end
self.locations.assembly.requirements = function(self, items) return _has(items, "juice") end
self.locations.mrLittle.requirements = function(self, items)
return _has(items, "locket") and self.region.world.regions.outerWall.locations.littleHouse:canAccess(items)
end
self.locations.mrLittle.requirements = function(self, items) return _has(items, "locket") end
self.locations.grave.requirements = function(self, items) return _has(items, "locket") end
self.locations.mushroomChest.requirements = function(self, items)
return _has(items, "flight") and _has(items, "locket") and _has(items, "eventCurly")