BuckarooBanzay 3e95d5830e init
2023-06-20 14:48:30 +02:00

16 lines
319 B
Lua

minetest.register_tool("pick_and_place:placer", {
description = "Placement tool",
inventory_image = "pick_and_place_plus.png^[colorize:#00ff00",
stack_max = 1,
range = 0,
on_use = function(itemstack, player)
end,
})
function pick_and_place.on_step()
end
function pick_and_place.on_blur()
end