16 lines
319 B
Lua
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
|