summaryrefslogtreecommitdiff
path: root/crops/hemp.lua
diff options
context:
space:
mode:
authorTenPlus1 <kinsellaja@yahoo.com>2018-06-12 16:13:24 +0100
committerTenPlus1 <kinsellaja@yahoo.com>2018-06-12 16:13:24 +0100
commit709f037ae72e11182be223e7681b5df6bf6b552c (patch)
treef8d9bef5437d23f08991fca2c51e23b8ca8e532a /crops/hemp.lua
parent8f3f32d6a657f90c50db688189105a22652f2e5b (diff)
add stairs for straw and hemp block
Diffstat (limited to 'crops/hemp.lua')
-rw-r--r--crops/hemp.lua17
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",