signs_bot added
This commit is contained in:
parent
8f9c235ce2
commit
4dcabcc4af
3
init.lua
3
init.lua
@ -34,6 +34,9 @@ else
|
||||
dofile(MP.."/basis/consumer.lua") -- consumer base model
|
||||
dofile(MP.."/basis/firebox_lib.lua") -- common firebox functions
|
||||
|
||||
-- Overrides
|
||||
dofile(MP.."/overrides/signs_bot.lua")
|
||||
|
||||
-- Tools
|
||||
dofile(MP.."/tools/trowel.lua")
|
||||
dofile(MP.."/tools/repairkit.lua")
|
||||
|
2
mod.conf
2
mod.conf
@ -1,4 +1,4 @@
|
||||
name = techage
|
||||
depends = default,tubelib2,basic_materials,bucket
|
||||
optional_depends = unified_inventory,wielded_light
|
||||
optional_depends = unified_inventory,wielded_light,signs_bot
|
||||
description = Hello World!
|
10
overrides/signs_bot.lua
Normal file
10
overrides/signs_bot.lua
Normal file
@ -0,0 +1,10 @@
|
||||
if minetest.global_exists("signs_bot") then
|
||||
minetest.register_craft({
|
||||
output = "signs_bot:box",
|
||||
recipe = {
|
||||
{"default:steel_ingot", "group:wood", "default:steel_ingot"},
|
||||
{"basic_materials:motor", "techage:wlanchip", "basic_materials:gear_steel"},
|
||||
{"default:tin_ingot", "", "default:tin_ingot"}
|
||||
}
|
||||
})
|
||||
end
|
Loading…
Reference in New Issue
Block a user