mirror of
https://git.minetest.org/BuckarooBanzay/digibuilder.git
synced 2024-12-12 05:43:18 +01:00
16 lines
238 B
Lua
16 lines
238 B
Lua
|
|
if minetest.get_modpath("mesecons_luacontroller") then
|
|
|
|
local c = "mesecons_luacontroller:luacontroller0000"
|
|
|
|
minetest.register_craft({
|
|
output = "digibuilder:digibuilder",
|
|
recipe = {
|
|
{c,c,c},
|
|
{c,c,c},
|
|
{c,c,c}
|
|
}
|
|
})
|
|
|
|
end
|