Use ores from default instead of moreores

This commit is contained in:
ShadowNinja
2013-07-05 01:09:33 -04:00
parent 465890950b
commit 2d168e5afc
17 changed files with 86 additions and 86 deletions

View File

@ -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'},
}
})