mirror of
https://github.com/minetest-mods/mesecons.git
synced 2024-12-26 02:10:18 +01:00
Fixed Button-Param2-Check
This commit is contained in:
parent
618a933ba1
commit
2dba4d917f
@ -33,10 +33,12 @@ minetest.register_on_dignode(
|
|||||||
end
|
end
|
||||||
)
|
)
|
||||||
minetest.register_on_placenode(function(pos, node)
|
minetest.register_on_placenode(function(pos, node)
|
||||||
|
if node.name == "jeija:wall_button_off" or node.name == "jeija:wall_button_on" then
|
||||||
if node.param2 == 4 or node.param2 == 8 then
|
if node.param2 == 4 or node.param2 == 8 then
|
||||||
minetest.env:remove_node(pos)
|
minetest.env:remove_node(pos)
|
||||||
minetest.env:add_item(pos, 'node jeija:wall_button_off 1')
|
minetest.env:add_item(pos, 'node jeija:wall_button_off 1')
|
||||||
end
|
end
|
||||||
|
end
|
||||||
end)
|
end)
|
||||||
minetest.register_on_punchnode(function(pos, node, puncher)
|
minetest.register_on_punchnode(function(pos, node, puncher)
|
||||||
if node.name == "jeija:wall_button_off" then
|
if node.name == "jeija:wall_button_off" then
|
||||||
|
Loading…
Reference in New Issue
Block a user