summaryrefslogtreecommitdiff
path: root/wielder.lua
diff options
context:
space:
mode:
authorroot <root@linux-forks.de>2018-08-22 21:47:49 +0200
committerroot <root@linux-forks.de>2018-08-22 21:47:49 +0200
commit33ac76d890cac1c2ba808f2fe1a064f1e7c0fc45 (patch)
tree20e9baf4048970bf8eecf1c6d596bc95db60d2dc /wielder.lua
parentc18b9fc40837aacb1ed37b7c07eeeea315ed586b (diff)
parent6fdda1839064684f77c9ea7f3e087a2d3d6fa388 (diff)
Merge branch 'master' of https://github.com/minetest-mods/pipeworks
Diffstat (limited to 'wielder.lua')
-rw-r--r--wielder.lua23
1 files changed, 18 insertions, 5 deletions
diff --git a/wielder.lua b/wielder.lua
index 98f1ef0..4a80d3e 100644
--- a/wielder.lua
+++ b/wielder.lua
@@ -331,12 +331,25 @@ if pipeworks.enable_node_breaker then
virtplayer:set_wielded_item(wieldstack)
else
local under_node = minetest.get_node(pointed_thing.under)
- local on_dig = (minetest.registered_nodes[under_node.name] or {on_dig=minetest.node_dig}).on_dig
- -- check that the current tool is capable of destroying the target node.
+ local def = minetest.registered_nodes[under_node.name]
+ if not def then
+ -- do not dig an unknown node
+ return
+ end
+ -- check that the current tool is capable of destroying the
+ -- target node.
-- if we can't, don't dig, and leave the wield stack unchanged.
- -- note that wieldstack:get_tool_capabilities() returns hand properties if the item has none of it's own.
- if can_tool_dig_node(under_node.name, wieldstack:get_tool_capabilities(), wieldstack:get_name()) then
- on_dig(pointed_thing.under, under_node, virtplayer)
+ -- note that wieldstack:get_tool_capabilities() returns hand
+ -- properties if the item has none of it's own.
+ if can_tool_dig_node(under_node.name,
+ wieldstack:get_tool_capabilities(),
+ wieldstack:get_name()) then
+ def.on_dig(pointed_thing.under, under_node, virtplayer)
+ local sound = def.sounds and def.sounds.dug
+ if sound then
+ minetest.sound_play(sound.name,
+ {pos=pointed_thing.under, gain=sound.gain})
+ end
wieldstack = virtplayer:get_wielded_item()
else
--pipeworks.logger(dname.."couldn't dig node!")