diff options
author | Wuzzy <almikes@aol.com> | 2016-12-16 12:51:09 +0100 |
---|---|---|
committer | Wuzzy <almikes@aol.com> | 2016-12-16 12:51:09 +0100 |
commit | 3edeabd1fda551f1528ee8af884e10fdfebadf5c (patch) | |
tree | 4aec52ab607227c899bb77ca6c8a4717aed268e2 /init.lua | |
parent | 839e484fcc3bd391d184e91d52992f82bec2ceb8 (diff) |
Also check place_failed as sound
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -484,7 +484,7 @@ doc.new_category("nodes", { if data.def.diggable and is_silent(data.def, "dig") and is_silent(data.def, "dug") then silentdig = true end - if is_silent(data.def, "place") and data.itemstring ~= "air" then + if is_silent(data.def, "place") and is_silent(data.def, "place_failed") and data.itemstring ~= "air" then silentplace = true end if silentstep and silentdig and silentplace then |