Skip to content

Commit 56f77a2

Browse files
committedMar 11, 2017
Remove unused toolcaps of the wand tool
1 parent 610cd99 commit 56f77a2

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed
 

‎worldedit_commands/wand.lua

-10
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,6 @@ minetest.register_tool(":worldedit:wand", {
33
inventory_image = "worldedit_wand.png",
44
stack_max = 1, -- there is no need to have more than one
55
liquids_pointable = true, -- ground with only water on can be selected as well
6-
-- the tool_capabilities are completely irrelevant here - no need to dig
7-
tool_capabilities = {
8-
full_punch_interval = 1.0,
9-
max_drop_level = 0,
10-
groupcaps={
11-
fleshy={times={[2]=0.80, [3]=0.40}, uses=1/0.05, maxlevel=1},
12-
snappy={times={[2]=0.80, [3]=0.40}, uses=1/0.05, maxlevel=1},
13-
choppy={times={[3]=0.90}, uses=1/0.05, maxlevel=0}
14-
}
15-
},
166

177
on_use = function(itemstack, placer, pointed_thing)
188
if placer ~= nil and pointed_thing ~= nil and pointed_thing.type == "node" then

0 commit comments

Comments
 (0)