We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83a028f commit 38f4715Copy full SHA for 38f4715
worldedit_commands/wand.lua
@@ -17,6 +17,13 @@ minetest.register_tool(":worldedit:wand", {
17
stack_max = 1, -- there is no need to have more than one
18
liquids_pointable = true, -- ground with only water on can be selected as well
19
20
+ -- ignore marker cube so the clicking on the position markers works reliably
21
+ pointabilities = {
22
+ objects = {
23
+ ["worldedit:region_cube"] = false
24
+ }
25
+ },
26
+
27
on_use = function(itemstack, placer, pointed_thing)
28
if placer == nil or pointed_thing == nil then return end
29
local name = placer:get_player_name()
0 commit comments