Fix bug reported here: http://bit.ly/VOF35X

master
Jeija 2012-12-18 16:20:24 +01:00
parent e9e1006656
commit 5cdf23fb00
1 changed files with 2 additions and 2 deletions

View File

@ -191,7 +191,7 @@ minetest.register_node("mesecons_pistons:piston_normal", {
local pitch = placer:get_look_pitch() * (180 / math.pi) --placer pitch in degrees
if pitch > 45 then --looking upwards
minetest.env:add_node(pos, {name="mesecons_pistons:piston_down_normal"})
elseif pitch < 45 then --looking downwards
elseif pitch < -45 then --looking downwards
minetest.env:add_node(pos, {name="mesecons_pistons:piston_up_normal"})
end
end,
@ -443,4 +443,4 @@ minetest.register_craft({
{"mesecons_materials:glue"},
{"mesecons_pistons:piston_normal"},
}
})
})