diff options
Diffstat (limited to 'extranodes/init.lua')
-rw-r--r-- | extranodes/init.lua | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/extranodes/init.lua b/extranodes/init.lua index ccecbaa..9a54687 100644 --- a/extranodes/init.lua +++ b/extranodes/init.lua @@ -3,6 +3,10 @@ -- Boilerplate to support localized strings if intllib mod is installed. local S = rawget(_G, "intllib") and intllib.Getter() or function(s) return s end +-- some extras to the extras +local path = string.gsub(technic.modpath, "technic/technic", "technic/extranodes") +dofile(path.."/straight_tube.lua") + if minetest.get_modpath("moreblocks") then -- register stairsplus/circular_saw nodes @@ -257,6 +261,7 @@ minetest.register_node(":technic:trampoline", { sounds = {footstep = {name = "trampoline_boing", gain = 1.0}} }) + minetest.register_craft({ output = "technic:fall_dampener_50", recipe = { |