diff options
author | Vitaliy <silverunicorn2011@yandex.ru> | 2018-07-18 01:37:45 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-18 01:37:45 +0300 |
commit | ff73d0e60f90fdb6f7a81fd1ac1c806ba7207c46 (patch) | |
tree | 208cfc212c0b354a312186ac92b9465aeeb66252 /mesecons_hydroturbine | |
parent | 7013f2e5d47ff2d21fb66fe82966a34ece947eec (diff) | |
parent | 5ae33542274c96b956a505263e8b23e636b8f208 (diff) | |
download | mesecons-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.lua | 4 |
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 }}, |