diff options
-rw-r--r-- | extranodes/trampoline.lua | 3 | ||||
-rw-r--r-- | technic/init.lua | 2 | ||||
-rw-r--r-- | technic/machines/LV/cnc_nodes.lua | 9 |
3 files changed, 13 insertions, 1 deletions
diff --git a/extranodes/trampoline.lua b/extranodes/trampoline.lua index 5616a73..8d94a92 100644 --- a/extranodes/trampoline.lua +++ b/extranodes/trampoline.lua @@ -35,6 +35,7 @@ minetest.register_node(":technic:fall_dampener_50", { "technic_fall_dampener_side.png"}, groups = {crumbly = 3, fall_damage_add_percent = -50}, sounds = default.node_sound_dirt_defaults(), + paramtype = "light", paramtype2 = "facedir", }) @@ -49,6 +50,7 @@ minetest.register_node(":technic:fall_dampener_100", { "technic_fall_dampener_side.png"}, groups = {crumbly = 3, fall_damage_add_percent = -100}, sounds = default.node_sound_dirt_defaults(), + paramtype = "light", paramtype2 = "facedir", }) @@ -63,6 +65,7 @@ minetest.register_node(":technic:trampoline", { "technic_trampoline_side.png"}, groups = {crumbly = 3, bouncy = 100, fall_damage_add_percent = -100}, sounds = {footstep = {name = "trampoline_boing", gain = 1.0}}, + paramtype = "light", paramtype2 = "facedir", }) diff --git a/technic/init.lua b/technic/init.lua index 56abfbd..29508c9 100644 --- a/technic/init.lua +++ b/technic/init.lua @@ -12,7 +12,7 @@ local modpath = minetest.get_modpath("technic") technic.modpath = modpath -- there should be a way to distinguish this fork from others -technic.vendorstring = "linuxforks" +technic.mod = "linuxforks" -- Boilerplate to support intllib if rawget(_G, "intllib") then diff --git a/technic/machines/LV/cnc_nodes.lua b/technic/machines/LV/cnc_nodes.lua index 2667383..e16b7f7 100644 --- a/technic/machines/LV/cnc_nodes.lua +++ b/technic/machines/LV/cnc_nodes.lua @@ -318,6 +318,15 @@ if minetest.get_modpath("ethereal") then {snappy=2, choppy=2, oddly_breakable_by_hand=2, not_in_creative_inventory=1}, {"bamboo_floor.png"}, S("Bamboo")) + + -- Shaped hedge bush for gardens and parks + ------------------------------------------- + + technic.cnc.register_all("ethereal:bush", + {snappy=3, flamable=2, not_in_creative_inventory=1}, + {"ethereal_bush.png"}, + S("Bush")) + end |