1
0
mirror of https://github.com/mt-mods/pipeworks.git synced 2024-12-26 02:40:23 +01:00

use default copper instead of moreores copper for the water pump recipe

This commit is contained in:
Tim 2014-09-21 13:51:55 +02:00
parent 5b2e3a44c3
commit cf9c4fa3b1

View File

@ -32,7 +32,7 @@ minetest.register_craft( {
output = "pipeworks:pump_off 2", output = "pipeworks:pump_off 2",
recipe = { recipe = {
{ "default:stone", "default:steel_ingot", "default:stone" }, { "default:stone", "default:steel_ingot", "default:stone" },
{ "moreores:copper_ingot", "default:mese_crystal_fragment", "moreores:copper_ingot" }, { "default:copper_ingot", "default:mese_crystal_fragment", "default:copper_ingot" },
{ "default:steel_ingot", "default:steel_ingot", "default:steel_ingot" } { "default:steel_ingot", "default:steel_ingot", "default:steel_ingot" }
}, },
}) })