A Button shouldn't be placed on Floor/Ceiling

This commit is contained in:
sfan5 2012-01-09 14:30:11 +01:00
parent 410c0d6946
commit 42f739da06
1 changed files with 6 additions and 0 deletions

View File

@ -32,6 +32,12 @@ minetest.register_on_dignode(
end
end
)
minetest.register_on_placenode(function(pos, node)
if node.param2 == 4 or node.param2 == 8 then
minetest.env:remove_node(pos)
minetest.env:add_item(pos, 'node jeija:wall_button_off 1')
end
end)
minetest.register_on_punchnode(function(pos, node, puncher)
if node.name == "jeija:wall_button_off" then
minetest.env:add_node(pos, {name="jeija:wall_button_on",param2=node.param2})