summaryrefslogtreecommitdiff
path: root/mesecons_hydroturbine
diff options
context:
space:
mode:
authorWuzzy <Wuzzy2@mail.ru>2018-01-28 21:22:09 +0100
committerWuzzy <Wuzzy2@mail.ru>2018-01-28 21:22:09 +0100
commit5ae33542274c96b956a505263e8b23e636b8f208 (patch)
tree8b28d49b4462792a3db51912d870a8f9e5371504 /mesecons_hydroturbine
parent1b513d211185ace0be7e1f8792b61c65d54ecd23 (diff)
downloadmesecons-5ae33542274c96b956a505263e8b23e636b8f208.tar
mesecons-5ae33542274c96b956a505263e8b23e636b8f208.tar.gz
mesecons-5ae33542274c96b956a505263e8b23e636b8f208.tar.bz2
mesecons-5ae33542274c96b956a505263e8b23e636b8f208.tar.xz
mesecons-5ae33542274c96b956a505263e8b23e636b8f208.zip
Change hydroturbine sound to metal
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
}},