diff options
author | h-v-smacker <hans-von-smacker+github@gmail.com> | 2018-03-21 19:15:58 +0300 |
---|---|---|
committer | h-v-smacker <hans-von-smacker+github@gmail.com> | 2018-03-21 19:15:58 +0300 |
commit | 25647980adc85a6a84b026bd201f8de9d308a187 (patch) | |
tree | 1354111131ca27bf377c0cfea40aec2e67bee835 | |
parent | 74031c2e408d1b73204920fd2c3c87b98167a5ca (diff) |
bamboo CNC support
-rw-r--r-- | technic/machines/LV/cnc_nodes.lua | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/technic/machines/LV/cnc_nodes.lua b/technic/machines/LV/cnc_nodes.lua index 2440702..6463c62 100644 --- a/technic/machines/LV/cnc_nodes.lua +++ b/technic/machines/LV/cnc_nodes.lua @@ -316,6 +316,13 @@ if minetest.get_modpath("ethereal") then {snappy=2, choppy=2, oddly_breakable_by_hand=2, not_in_creative_inventory=1}, {"redwood_wood.png"}, S("Redwood")) + + -- Glorious bamboo + ------------------- + technic.cnc.register_all("ethereal:bamboo_floor", + {snappy=2, choppy=2, oddly_breakable_by_hand=2, not_in_creative_inventory=1}, + {"bamboo_floor.png"}, + S("Bamboo")) end |