From 2d168e5afc57f8da9973b67d0811cc33fed9e3a3 Mon Sep 17 00:00:00 2001 From: ShadowNinja <noreply@gmail.com> Date: Fri, 05 Jul 2013 07:57:45 +0200 Subject: [PATCH] Use ores from default instead of moreores --- technic/grinder.lua | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/technic/grinder.lua b/technic/grinder.lua index 1d8fb2e..88a5001 100644 --- a/technic/grinder.lua +++ b/technic/grinder.lua @@ -78,7 +78,7 @@ }) minetest.register_craft({ type = "cooking", - output = "moreores:copper_ingot", + output = "default:copper_ingot", recipe = "technic:copper_dust", }) @@ -111,7 +111,7 @@ }) minetest.register_craft({ type = "cooking", - output = "moreores:gold_ingot", + output = "default:gold_ingot", recipe = "technic:gold_dust", }) @@ -144,7 +144,7 @@ }) minetest.register_craft({ type = "cooking", - output = "moreores:bronze_ingot", + output = "default:bronze_ingot", recipe = "technic:bronze_dust", }) @@ -186,8 +186,8 @@ output = 'technic:grinder', recipe = { {'default:desert_stone', 'default:desert_stone', 'default:desert_stone'}, - {'default:desert_stone', 'default:diamond', 'default:desert_stone'}, - {'default:stone', 'moreores:copper_ingot', 'default:stone'}, + {'default:desert_stone', 'default:diamond', 'default:desert_stone'}, + {'default:stone', 'default:copper_ingot', 'default:stone'}, } }) -- Gitblit v1.8.0