summaryrefslogtreecommitdiff
path: root/mesecons_hydroturbine
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_hydroturbine
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_hydroturbine')
-rw-r--r--mesecons_hydroturbine/init.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/mesecons_hydroturbine/init.lua b/mesecons_hydroturbine/init.lua
index 395b8f6..afa21e9 100644
--- a/mesecons_hydroturbine/init.lua
+++ b/mesecons_hydroturbine/init.lua
@@ -22,7 +22,7 @@ minetest.register_node("mesecons_hydroturbine:hydro_turbine_off", {
type = "fixed",
fixed = { -0.5, -0.5, -0.5, 0.5, 1.5, 0.5 },
},
- sounds = default.node_sound_stone_defaults(),
+ sounds = default.node_sound_metal_defaults(),
mesecons = {receptor = {
state = mesecon.state.off
}},
@@ -51,7 +51,7 @@ minetest.register_node("mesecons_hydroturbine:hydro_turbine_on", {
type = "fixed",
fixed = { -0.5, -0.5, -0.5, 0.5, 1.5, 0.5 },
},
- sounds = default.node_sound_stone_defaults(),
+ sounds = default.node_sound_metal_defaults(),
mesecons = {receptor = {
state = mesecon.state.on
}},