forked from Mirrorlandia_minetest/mesecons
Same for sticky piston
This commit is contained in:
parent
5cdf23fb00
commit
f6ef7b005d
@ -214,7 +214,7 @@ minetest.register_node("mesecons_pistons:piston_sticky", {
|
|||||||
local pitch = placer:get_look_pitch() * (180 / math.pi) --placer pitch in degrees
|
local pitch = placer:get_look_pitch() * (180 / math.pi) --placer pitch in degrees
|
||||||
if pitch > 45 then --looking upwards
|
if pitch > 45 then --looking upwards
|
||||||
minetest.env:add_node(pos, {name="mesecons_pistons:piston_down_sticky"})
|
minetest.env:add_node(pos, {name="mesecons_pistons:piston_down_sticky"})
|
||||||
elseif pitch < 45 then --looking downwards
|
elseif pitch < -45 then --looking downwards
|
||||||
minetest.env:add_node(pos, {name="mesecons_pistons:piston_up_sticky"})
|
minetest.env:add_node(pos, {name="mesecons_pistons:piston_up_sticky"})
|
||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
|
Loading…
Reference in New Issue
Block a user