This commit is contained in:
shamoanjac 2016-08-19 10:02:57 +02:00
commit 367879cd4e
1 changed files with 1 additions and 1 deletions

View File

@ -783,7 +783,7 @@ minetest.is_protected = function(pos, player)
return not player_faction:has_permission(player, "claim") and player_faction.power > 0. and not parcel_faction.is_admin
end
-- no faction
if not parcel_faction then
if not parcel_faction or not player_faction then
return default_is_protected(pos, player)
elseif not player_faction then
return true