mirror of
https://github.com/minetest/minetest.git
synced 2024-11-27 01:53:45 +01:00
Builtin: Fix error by digging unknown nodes
This commit is contained in:
parent
7ce21788f8
commit
3f675490df
@ -621,7 +621,7 @@ function core.node_dig(pos, node, digger)
|
|||||||
core.remove_node(pos)
|
core.remove_node(pos)
|
||||||
|
|
||||||
-- Play sound if it was done by a player
|
-- Play sound if it was done by a player
|
||||||
if diggername ~= "" and def.sounds and def.sounds.dug then
|
if diggername ~= "" and def and def.sounds and def.sounds.dug then
|
||||||
core.sound_play(def.sounds.dug, {
|
core.sound_play(def.sounds.dug, {
|
||||||
pos = pos,
|
pos = pos,
|
||||||
exclude_player = diggername,
|
exclude_player = diggername,
|
||||||
|
Loading…
Reference in New Issue
Block a user