Allow open areas inside closed areas to be used openly

This commit is contained in:
ShadowNinja 2014-03-23 12:25:44 -04:00
parent 78ca95d5b4
commit ce8891a325
1 changed files with 2 additions and 4 deletions

View File

@ -21,12 +21,10 @@ function areas:canInteract(pos, name)
end end
local owned = false local owned = false
for _, area in pairs(self:getAreasAtPos(pos)) do for _, area in pairs(self:getAreasAtPos(pos)) do
if area.owner == name then if area.owner == name or area.open then
return true return true
else else
if not area.open then owned = true
owned = true
end
end end
end end
return not owned return not owned