Skip to content

Commit

Permalink
Builtin: Fix error by digging unknown nodes
Browse files Browse the repository at this point in the history
SmallJoker committed Feb 16, 2020
1 parent 7ce2178 commit 3f67549
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builtin/game/item.lua
Original file line number Diff line number Diff line change
@@ -621,7 +621,7 @@ function core.node_dig(pos, node, digger)
core.remove_node(pos)

-- 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, {
pos = pos,
exclude_player = diggername,

0 comments on commit 3f67549

Please sign in to comment.