diff options
| -rw-r--r-- | technic/crafts.lua | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/technic/crafts.lua b/technic/crafts.lua index 8bf477b..29ff0d0 100644 --- a/technic/crafts.lua +++ b/technic/crafts.lua @@ -37,18 +37,18 @@ minetest.register_craft({  minetest.register_craft({  	output = 'technic:blue_energy_crystal',  	recipe = { -		{'default:gold_ingot', 'technic:battery', 'dye:blue'}, +		{'moreores:mithril_ingot', 'technic:battery', 'dye:blue'},  		{'technic:battery', 'technic:green_energy_crystal', 'technic:battery'}, -		{'dye:blue', 'technic:battery', 'default:gold_ingot'}, +		{'dye:blue', 'technic:battery', 'moreores:mithril_ingot'},  	}  })  minetest.register_craft({  	output = 'technic:red_energy_crystal',  	recipe = { -		{'default:gold_ingot', 'technic:battery', 'dye:red'}, +		{'moreores:silver_ingot', 'technic:battery', 'dye:red'},  		{'technic:battery', 'default:diamondblock', 'technic:battery'}, -		{'dye:red', 'technic:battery', 'default:gold_ingot'}, +		{'dye:red', 'technic:battery', 'moreores:silver_ingot'},  	}  }) | 
