summaryrefslogtreecommitdiff
path: root/mesecons_insulated
diff options
context:
space:
mode:
authorVitaliy <silverunicorn2011@yandex.ru>2018-07-18 01:37:45 +0300
committerGitHub <noreply@github.com>2018-07-18 01:37:45 +0300
commitff73d0e60f90fdb6f7a81fd1ac1c806ba7207c46 (patch)
tree208cfc212c0b354a312186ac92b9465aeeb66252 /mesecons_insulated
parent7013f2e5d47ff2d21fb66fe82966a34ece947eec (diff)
parent5ae33542274c96b956a505263e8b23e636b8f208 (diff)
downloadmesecons-ff73d0e60f90fdb6f7a81fd1ac1c806ba7207c46.tar
mesecons-ff73d0e60f90fdb6f7a81fd1ac1c806ba7207c46.tar.gz
mesecons-ff73d0e60f90fdb6f7a81fd1ac1c806ba7207c46.tar.bz2
mesecons-ff73d0e60f90fdb6f7a81fd1ac1c806ba7207c46.tar.xz
mesecons-ff73d0e60f90fdb6f7a81fd1ac1c806ba7207c46.zip
Merge pull request #401 from Wuzzy2/sfx
Add missing sound effects and fix wrong pressure plate sounds
Diffstat (limited to 'mesecons_insulated')
-rw-r--r--mesecons_insulated/init.lua2
1 files changed, 2 insertions, 0 deletions
diff --git a/mesecons_insulated/init.lua b/mesecons_insulated/init.lua
index 92ff639..b917323 100644
--- a/mesecons_insulated/init.lua
+++ b/mesecons_insulated/init.lua
@@ -35,6 +35,7 @@ minetest.register_node("mesecons_insulated:insulated_on", {
},
groups = {dig_immediate = 3, not_in_creative_inventory = 1},
drop = "mesecons_insulated:insulated_off",
+ sounds = default.node_sound_defaults(),
mesecons = {conductor = {
state = mesecon.state.on,
offstate = "mesecons_insulated:insulated_off",
@@ -69,6 +70,7 @@ minetest.register_node("mesecons_insulated:insulated_off", {
fixed = { -16/32-0.001, -17/32, -3/32, 16/32+0.001, -13/32, 3/32 }
},
groups = {dig_immediate = 3},
+ sounds = default.node_sound_defaults(),
mesecons = {conductor = {
state = mesecon.state.off,
onstate = "mesecons_insulated:insulated_on",