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

@ -81,7 +81,7 @@ function stairsplus:register_6dfacedir_conversion(modname, material)
action = function(pos, node, active_object_count, active_object_count_wider)
local fdir = node.param2 or 0
if flip_upside_down and not flip_to_wall then
if flip_upside_down and not flip_to_wall then
nfdir = dirs1[fdir + 2]
elseif flip_to_wall and not flip_upside_down then
nfdir = dirs2[fdir + 1]
@ -125,7 +125,7 @@ function stairsplus:register_6dfacedir_conversion(modname, material)
local fdir = node.param2
local nfdir = 20
if flip_upside_down and not flip_to_wall then
if flip_upside_down and not flip_to_wall then
nfdir = dirs1[fdir + 1]
elseif flip_to_wall and not flip_upside_down then
nfdir = dirs2[fdir + 2]
@ -136,4 +136,3 @@ function stairsplus:register_6dfacedir_conversion(modname, material)
})
end
end