diff options
Diffstat (limited to 'api.lua')
-rw-r--r-- | api.lua | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -24,7 +24,9 @@ function areas:canInteract(pos, name) if area.owner == name then return true else - owned = true + if not area.open then + owned = true + end end end return not owned |