Run cleanfile on all files, fixing whitespace issues.

This commit is contained in:
Auke Kok
2016-12-15 14:56:45 -08:00
committed by Auke Kok
parent d587b4d23f
commit 5500c9906c
10 changed files with 67 additions and 70 deletions

View File

@ -22,11 +22,11 @@ function moreblocks.node_is_owned(pos, placer)
end
end
elseif type(isprotect)=="function" then -- glomie's protection mod
elseif type(isprotect)=="function" then -- glomie's protection mod
if not isprotect(5, pos, placer) then
ownername = S("someone")
end
elseif type(protector)=="table" and type(protector.can_dig)=="function" then -- Zeg9's protection mod
elseif type(protector)=="table" and type(protector.can_dig)=="function" then -- Zeg9's protection mod
if not protector.can_dig(5, pos, placer) then
ownername = S("someone")
end