Make modpack mostly independent from MTG (#607)

This commit is contained in:
Jude Melton-Houghton
2022-05-05 10:57:53 -04:00
committed by GitHub
부모 f4070d3e64
커밋 dfa43d6c0c
67개의 변경된 파일285개의 추가작업 그리고 187개의 파일을 삭제

파일 보기

@@ -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 = default.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 = default.node_sound_metal_defaults(),
sounds = mesecon.node_sound.metal,
mesecons = {receptor = {
state = mesecon.state.on
}},
@@ -97,9 +97,9 @@ nodenames = {"mesecons_hydroturbine:hydro_turbine_on"},
minetest.register_craft({
output = "mesecons_hydroturbine:hydro_turbine_off 2",
recipe = {
{"","default:stick", ""},
{"default:stick", "default:steel_ingot", "default:stick"},
{"","default:stick", ""},
{"","grup:stick", ""},
{"group:stick", "mesecons_gamecompat:steel_ingot", "group:stick"},
{"","group:stick", ""},
}
})