diff options
author | Wuzzy <Wuzzy2@mail.ru> | 2018-01-28 21:22:09 +0100 |
---|---|---|
committer | Wuzzy <Wuzzy2@mail.ru> | 2018-01-28 21:22:09 +0100 |
commit | 5ae33542274c96b956a505263e8b23e636b8f208 (patch) | |
tree | 8b28d49b4462792a3db51912d870a8f9e5371504 | |
parent | 1b513d211185ace0be7e1f8792b61c65d54ecd23 (diff) |
Change hydroturbine sound to metal
-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 }}, |