4e31d3219b
create stoneworking mod. create nodes stone bricks and stone tile, then add placeholder recipe for both.
4 lines
250 B
Lua
4 lines
250 B
Lua
local modname = minetest.get_current_modname()
|
|
|
|
blockgame.crafting.register_stack_recipe("core:stone", "tree:nut", {name = modname .. ":bricks"})
|
|
blockgame.crafting.register_stack_recipe(modname .. ":bricks", "tree:nut", {name = modname .. ":tile"})
|