airutils/airutils_repair.lua

18 lines
397 B
Lua
Raw Permalink Normal View History

local S = airutils.S
2021-12-12 14:24:42 +00:00
-- trike repair
minetest.register_craftitem("airutils:repair_tool",{
description = S("Repair Tool"),
2021-12-12 14:24:42 +00:00
inventory_image = "airutils_repair_tool.png",
})
minetest.register_craft({
output = "airutils:repair_tool",
recipe = {
{"", "default:steel_ingot", ""},
{"", "default:steel_ingot", ""},
{"default:steel_ingot", "", "default:steel_ingot"},
},
})