Skip to content

Commit

Permalink
Builtin: Fix error by digging unknown nodes
Browse files Browse the repository at this point in the history
  • Loading branch information
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
Expand Up @@ -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,
Expand Down

0 comments on commit 3f67549

Please sign in to comment.