mirror of
https://github.com/minetest-mods/towercrane.git
synced 2024-11-22 15:23:51 +01:00
recipe added
This commit is contained in:
parent
37479a77b7
commit
2b1aa83ff2
16
init.lua
16
init.lua
@ -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", ""}
|
||||
}
|
||||
})
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user