recipe added

This commit is contained in:
Joachim Stolberg 2017-06-06 21:42:02 +02:00
parent 37479a77b7
commit 2b1aa83ff2

@ -529,3 +529,19 @@ minetest.register_node("towercrane:arm2", {
is_ground_content = false,
groups = {crumbly=0, not_in_creative_inventory=1},
})
----------------------------------------------------------------------------------------------------
-- Register Recipe
----------------------------------------------------------------------------------------------------
minetest.register_craft({
output = "towercrane:base",
recipe = {
{"default:steel_ingot", "default:steel_ingot", "default:steel_ingot"},
{"default:steel_ingot", "", ""},
{"default:steel_ingot", "dye:yellow", ""}
}
})