summaryrefslogtreecommitdiff
path: root/technic_chests
diff options
context:
space:
mode:
authorShadowNinja <noreply@gmail.com>2013-07-05 01:09:33 -0400
committerShadowNinja <noreply@gmail.com>2013-07-05 01:57:45 -0400
commit2d168e5afc57f8da9973b67d0811cc33fed9e3a3 (patch)
treec520e272f677ed4f875613fe2d78abef88095fe4 /technic_chests
parent465890950b7b68225bdedf771f995281ba879d27 (diff)
Use ores from default instead of moreores
Diffstat (limited to 'technic_chests')
-rw-r--r--technic_chests/copper_chest.lua12
-rw-r--r--technic_chests/gold_chest.lua12
2 files changed, 12 insertions, 12 deletions
diff --git a/technic_chests/copper_chest.lua b/technic_chests/copper_chest.lua
index c121e78..44a42f3 100644
--- a/technic_chests/copper_chest.lua
+++ b/technic_chests/copper_chest.lua
@@ -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'},
}
})
diff --git a/technic_chests/gold_chest.lua b/technic_chests/gold_chest.lua
index fa275fa..8dc1274 100644
--- a/technic_chests/gold_chest.lua
+++ b/technic_chests/gold_chest.lua
@@ -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'},
}
})