forked from minetest-mods/technic
Use ores from default instead of moreores
This commit is contained in:
@ -1,18 +1,18 @@
|
||||
minetest.register_craft({
|
||||
output = 'technic:copper_chest 1',
|
||||
recipe = {
|
||||
{'moreores:copper_ingot','moreores:copper_ingot','moreores:copper_ingot'},
|
||||
{'moreores:copper_ingot','technic:iron_chest','moreores:copper_ingot'},
|
||||
{'moreores:copper_ingot','moreores:copper_ingot','moreores:copper_ingot'},
|
||||
{'default:copper_ingot', 'default:copper_ingot', 'default:copper_ingot'},
|
||||
{'default:copper_ingot', 'technic:iron_chest', 'default:copper_ingot'},
|
||||
{'default:copper_ingot', 'default:copper_ingot', 'default:copper_ingot'},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'technic:copper_locked_chest 1',
|
||||
recipe = {
|
||||
{'moreores:copper_ingot','moreores:copper_ingot','moreores:copper_ingot'},
|
||||
{'moreores:copper_ingot','technic:iron_locked_chest','moreores:copper_ingot'},
|
||||
{'moreores:copper_ingot','moreores:copper_ingot','moreores:copper_ingot'},
|
||||
{'default:copper_ingot', 'default:copper_ingot', 'default:copper_ingot'},
|
||||
{'default:copper_ingot', 'technic:iron_locked_chest', 'default:copper_ingot'},
|
||||
{'default:copper_ingot', 'default:copper_ingot', 'default:copper_ingot'},
|
||||
}
|
||||
})
|
||||
|
||||
|
@ -19,18 +19,18 @@ local chest_mark_colors = {
|
||||
minetest.register_craft({
|
||||
output = 'technic:gold_chest 1',
|
||||
recipe = {
|
||||
{'moreores:gold_ingot','moreores:gold_ingot','moreores:gold_ingot'},
|
||||
{'moreores:gold_ingot','technic:silver_chest','moreores:gold_ingot'},
|
||||
{'moreores:gold_ingot','moreores:gold_ingot','moreores:gold_ingot'},
|
||||
{'default:gold_ingot', 'default:gold_ingot', 'default:gold_ingot'},
|
||||
{'default:gold_ingot', 'technic:silver_chest', 'default:gold_ingot'},
|
||||
{'default:gold_ingot', 'default:gold_ingot', 'default:gold_ingot'},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'technic:gold_locked_chest 1',
|
||||
recipe = {
|
||||
{'moreores:gold_ingot','moreores:gold_ingot','moreores:gold_ingot'},
|
||||
{'moreores:gold_ingot','technic:silver_locked_chest','moreores:gold_ingot'},
|
||||
{'moreores:gold_ingot','moreores:gold_ingot','moreores:gold_ingot'},
|
||||
{'default:gold_ingot', 'default:gold_ingot', 'default:gold_ingot'},
|
||||
{'default:gold_ingot', 'technic:silver_locked_chest', 'default:gold_ingot'},
|
||||
{'default:gold_ingot', 'default:gold_ingot', 'default:gold_ingot'},
|
||||
}
|
||||
})
|
||||
|
||||
|
Reference in New Issue
Block a user