diff options
author | h-v-smacker <hans-von-smacker+github@gmail.com> | 2018-04-02 00:17:55 +0300 |
---|---|---|
committer | h-v-smacker <hans-von-smacker+github@gmail.com> | 2018-04-02 00:17:55 +0300 |
commit | 8932edd126a283bb7d4bd8f04de5774af3867063 (patch) | |
tree | fc51b714e251e41942f4d8ad0a7bb525c51b131e /extranodes/init.lua | |
parent | ef7f363cca2005e6920094757181e0b4c63e1120 (diff) |
straight-only tube
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 = { |