"widen" the range for floor/ceiling placement checking

in fix_rotation function
This commit is contained in:
Vanessa Ezekowitz 2017-02-17 23:13:22 -05:00
parent 80e5429bf3
commit aacb377f8c
1 changed files with 2 additions and 2 deletions

View File

@ -103,9 +103,9 @@ function unifieddyes.fix_rotation(pos, placer, itemstack, pointed_thing)
local fdir = minetest.dir_to_wallmounted(dir)
if pitch < -(math.pi/4) then
if pitch < -(math.pi/8) then
fdir = 0
elseif pitch > math.pi/4 then
elseif pitch > math.pi/8 then
fdir = 1
end
minetest.swap_node(pos, { name = node.name, param2 = fdir })