mirror of
https://github.com/theFox6/microexpansion.git
synced 2024-11-22 15:13:51 +01:00
Put iron ingredient under microexpansion namespace
This commit is contained in:
parent
ba009fad0f
commit
c468c502b5
@ -52,15 +52,15 @@ item_transfer.register_io_device("exporter", {
|
||||
connect_sides = { "left" },
|
||||
recipe = {
|
||||
{ 1, {
|
||||
{"", "basic_materials:ic", iron_ingot_ingredient },
|
||||
{"", "basic_materials:ic", microexpansion.iron_ingot_ingredient },
|
||||
{"", "microexpansion:cable", "group:shovel" },
|
||||
{"", "", iron_ingot_ingredient },
|
||||
{"", "", microexpansion.iron_ingot_ingredient },
|
||||
},
|
||||
},
|
||||
{ 1, {
|
||||
{"", "microexpansion:logic_chip", iron_ingot_ingredient },
|
||||
{"", "microexpansion:logic_chip", microexpansion.iron_ingot_ingredient },
|
||||
{"", "microexpansion:cable", "group:shovel" },
|
||||
{"", "", iron_ingot_ingredient },
|
||||
{"", "", microexpansion.iron_ingot_ingredient },
|
||||
},
|
||||
}
|
||||
},
|
||||
|
@ -59,15 +59,15 @@ item_transfer.register_io_device("importer", {
|
||||
connect_sides = { "left" },
|
||||
recipe = {
|
||||
{ 1, {
|
||||
{"", "basic_materials:ic", iron_ingot_ingredient },
|
||||
{"", "basic_materials:ic", microexpansion.iron_ingot_ingredient },
|
||||
{"", "microexpansion:cable", "group:hoe" },
|
||||
{"", "", iron_ingot_ingredient },
|
||||
{"", "", microexpansion.iron_ingot_ingredient },
|
||||
},
|
||||
},
|
||||
{ 1, {
|
||||
{"", "microexpansion:logic_chip", iron_ingot_ingredient },
|
||||
{"", "microexpansion:logic_chip", microexpansion.iron_ingot_ingredient },
|
||||
{"", "microexpansion:cable", "group:hoe" },
|
||||
{"", "", iron_ingot_ingredient },
|
||||
{"", "", microexpansion.iron_ingot_ingredient },
|
||||
},
|
||||
}
|
||||
},
|
||||
|
@ -6,11 +6,11 @@ microexpansion.require_module("network")
|
||||
|
||||
|
||||
-- Iron Ingot Ingredient for MineClone2
|
||||
iron_ingot_ingredient = nil
|
||||
microexpansion.iron_ingot_ingredient = nil
|
||||
if minetest.get_modpath("mcl_core") then
|
||||
iron_ingot_ingredient = "mcl_core:iron_ingot"
|
||||
microexpansion.iron_ingot_ingredient = "mcl_core:iron_ingot"
|
||||
else
|
||||
iron_ingot_ingredient = "default:steel_ingot"
|
||||
microexpansion.iron_ingot_ingredient = "default:steel_ingot"
|
||||
end
|
||||
|
||||
-- Load API
|
||||
|
@ -11,7 +11,7 @@ me.register_item("upgrade_base", {
|
||||
recipe = {
|
||||
{ 1, {
|
||||
{ "microexpansion:quartz_crystal" },
|
||||
{ iron_ingot_ingredient },
|
||||
{ microexpansion.iron_ingot_ingredient },
|
||||
},
|
||||
},
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user