diff options
Diffstat (limited to 'extranodes')
-rw-r--r-- | extranodes/init.lua | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/extranodes/init.lua b/extranodes/init.lua index 44d3dc1..118dc0a 100644 --- a/extranodes/init.lua +++ b/extranodes/init.lua @@ -10,6 +10,15 @@ dofile(path.."/trampoline.lua") dofile(path.."/extratubes.lua") dofile(path.."/lox.lua") +if minetest.get_modpath("bakedclay") then + -- bring back them sticks + minetest.register_craft( { + type = "shapeless", + output = "default:stick", + recipe = {"default:dry_shrub"} + }) +end + if minetest.get_modpath("moreblocks") then -- register stairsplus/circular_saw nodes |