Rename mod to mesecons_gamecompat

This commit is contained in:
Jude Melton-Houghton
2022-04-21 08:42:54 -04:00
parent 90ef9d2145
commit d074dd1a18
47 changed files with 128 additions and 128 deletions

View File

@ -104,18 +104,18 @@ minetest.register_node("mesecons_detector:object_detector_on", {
minetest.register_craft({
output = 'mesecons_detector:object_detector_off',
recipe = {
{"mesecons_compat:steel_ingot", "mesecons_compat:steel_ingot", "mesecons_compat:steel_ingot"},
{"mesecons_compat:steel_ingot", "mesecons_luacontroller:luacontroller0000", "mesecons_compat:steel_ingot"},
{"mesecons_compat:steel_ingot", "group:mesecon_conductor_craftable", "mesecons_compat:steel_ingot"},
{"mesecons_gamecompat:steel_ingot", "mesecons_gamecompat:steel_ingot", "mesecons_gamecompat:steel_ingot"},
{"mesecons_gamecompat:steel_ingot", "mesecons_luacontroller:luacontroller0000", "mesecons_gamecompat:steel_ingot"},
{"mesecons_gamecompat:steel_ingot", "group:mesecon_conductor_craftable", "mesecons_gamecompat:steel_ingot"},
}
})
minetest.register_craft({
output = 'mesecons_detector:object_detector_off',
recipe = {
{"mesecons_compat:steel_ingot", "mesecons_compat:steel_ingot", "mesecons_compat:steel_ingot"},
{"mesecons_compat:steel_ingot", "mesecons_microcontroller:microcontroller0000", "mesecons_compat:steel_ingot"},
{"mesecons_compat:steel_ingot", "group:mesecon_conductor_craftable", "mesecons_compat:steel_ingot"},
{"mesecons_gamecompat:steel_ingot", "mesecons_gamecompat:steel_ingot", "mesecons_gamecompat:steel_ingot"},
{"mesecons_gamecompat:steel_ingot", "mesecons_microcontroller:microcontroller0000", "mesecons_gamecompat:steel_ingot"},
{"mesecons_gamecompat:steel_ingot", "group:mesecon_conductor_craftable", "mesecons_gamecompat:steel_ingot"},
}
})
@ -279,18 +279,18 @@ minetest.register_node("mesecons_detector:node_detector_on", {
minetest.register_craft({
output = 'mesecons_detector:node_detector_off',
recipe = {
{"mesecons_compat:steel_ingot", "group:mesecon_conductor_craftable", "mesecons_compat:steel_ingot"},
{"mesecons_compat:steel_ingot", "mesecons_luacontroller:luacontroller0000", "mesecons_compat:steel_ingot"},
{"mesecons_compat:steel_ingot", "mesecons_compat:steel_ingot", "mesecons_compat:steel_ingot"},
{"mesecons_gamecompat:steel_ingot", "group:mesecon_conductor_craftable", "mesecons_gamecompat:steel_ingot"},
{"mesecons_gamecompat:steel_ingot", "mesecons_luacontroller:luacontroller0000", "mesecons_gamecompat:steel_ingot"},
{"mesecons_gamecompat:steel_ingot", "mesecons_gamecompat:steel_ingot", "mesecons_gamecompat:steel_ingot"},
}
})
minetest.register_craft({
output = 'mesecons_detector:node_detector_off',
recipe = {
{"mesecons_compat:steel_ingot", "group:mesecon_conductor_craftable", "mesecons_compat:steel_ingot"},
{"mesecons_compat:steel_ingot", "mesecons_microcontroller:microcontroller0000", "mesecons_compat:steel_ingot"},
{"mesecons_compat:steel_ingot", "mesecons_compat:steel_ingot", "mesecons_compat:steel_ingot"},
{"mesecons_gamecompat:steel_ingot", "group:mesecon_conductor_craftable", "mesecons_gamecompat:steel_ingot"},
{"mesecons_gamecompat:steel_ingot", "mesecons_microcontroller:microcontroller0000", "mesecons_gamecompat:steel_ingot"},
{"mesecons_gamecompat:steel_ingot", "mesecons_gamecompat:steel_ingot", "mesecons_gamecompat:steel_ingot"},
}
})