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
local owned = false
for _, area in pairs(self:getAreasAtPos(pos)) do
if area.owner == name then
if area.owner == name or area.open then
return true
else
if not area.open then
owned = true
end
owned = true
end
end
return not owned