diff options
author | TenPlus1 <kinsellaja@yahoo.com> | 2018-06-12 16:13:24 +0100 |
---|---|---|
committer | TenPlus1 <kinsellaja@yahoo.com> | 2018-06-12 16:13:24 +0100 |
commit | 709f037ae72e11182be223e7681b5df6bf6b552c (patch) | |
tree | f8d9bef5437d23f08991fca2c51e23b8ca8e532a /crops/hemp.lua | |
parent | 8f3f32d6a657f90c50db688189105a22652f2e5b (diff) |
add stairs for straw and hemp block
Diffstat (limited to 'crops/hemp.lua')
-rw-r--r-- | crops/hemp.lua | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/crops/hemp.lua b/crops/hemp.lua index 34dd56d..dd49134 100644 --- a/crops/hemp.lua +++ b/crops/hemp.lua @@ -111,6 +111,23 @@ minetest.register_craft( { }, }) +-- register stairs +if stairs and stairs.mod and stairs.mod == "redo" then + +stairs.register_all("hemp_block", "farming:hemp_block", + {snappy = 1, flammable = 2}, + {"farming_hemp_block.png"}, + "Hemp Block", + default.node_sound_leaves_defaults()) +else + +stairs.register_stair_and_slab("hemp_block", "farming:hemp_block", + {snappy = 1, flammable = 2}, + {"farming_hemp_block.png"}, + "Hemp Block", + default.node_sound_leaves_defaults()) +end + -- paper minetest.register_craft( { output = "default:paper", |