Add alternate recipes for technic concrete

This commit is contained in:
Carter Kolwey 2017-03-12 04:19:59 -05:00
parent 588478edf6
commit 470926017c

View File

@ -376,4 +376,13 @@ minetest.register_craft({
if minetest.get_modpath("technic") then
technic.register_grinder_recipe({input={"gloopblocks:pumice"},output="default:sand"})
technic.register_grinder_recipe({input={"gloopblocks:basalt"},output="default:cobble"})
minetest.register_craft({
type = "shapeless",
output = "technic:concrete 3",
recipe = {
"gloopblocks:wet_cement",
"group:sand",
"default:gravel",
}
})
end