added comments to not forget DO NOT FORGET

This commit is contained in:
HapaxL 2021-03-02 11:17:43 +01:00
parent 65cd5a1d8b
commit 061a9ce57c

View file

@ -37,12 +37,12 @@ function firstCave:new(worldGraph)
-- individual location access requirement overrides
self.locations.firstCapsule.canAccess = function(self, items)
if self.region.world:StartPoint() then return true end
if self.region.world:StartPoint() then return true end -- TODO remember to add a check for Entrance Rando here
return Location.canAccess(self, items)
end
self.locations.gunsmithChest.canAccess = function(self, items)
if self.region.world:StartPoint() then return true end
if self.region.world:StartPoint() then return true end -- TODO remember to add a check for Entrance Rando here
return Location.canAccess(self, items)
end
end