Rename/reorganize compat stuff

This commit is contained in:
Jude Melton-Houghton
2022-04-21 08:59:30 -04:00
parent d074dd1a18
commit 090c36b585
32 changed files with 89 additions and 74 deletions

View File

@ -23,7 +23,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 = mesecon.node_sound_metal_defaults,
sounds = mesecon.node_sound.metal,
mesecons = {receptor = {
state = mesecon.state.off
}},
@ -53,7 +53,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 = mesecon.node_sound_metal_defaults,
sounds = mesecon.node_sound.metal,
mesecons = {receptor = {
state = mesecon.state.on
}},