Skip to content

Instantly share code, notes, and snippets.

@PilzAdam
Created September 4, 2012 15:50
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PilzAdam/3622654 to your computer and use it in GitHub Desktop.
Save PilzAdam/3622654 to your computer and use it in GitHub Desktop.
minetest.register_node("mod:name", {
-- other stuff here
on_construct = function(pos)
minetest.env:remove_node(pos) -- delete the node
minete.env:add_item(pos, "wallpaper:roller") -- add the item
end,
-- other stuff here
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment