Make wand tool not point the region marker cube

This commit is contained in:
sfan5 2024-04-20 13:02:27 +02:00
parent a713efe051
commit 002dc462d6
1 changed files with 7 additions and 0 deletions

View File

@ -16,6 +16,13 @@ minetest.register_tool(":worldedit:wand", {
stack_max = 1, -- there is no need to have more than one
liquids_pointable = true, -- ground with only water on can be selected as well
-- ignore marker cube so the clicking on the position markers works reliably
pointabilities = {
objects = {
["worldedit:region_cube"] = false
}
},
on_use = function(itemstack, placer, pointed_thing)
if placer == nil or pointed_thing == nil then return end
local name = placer:get_player_name()