summaryrefslogtreecommitdiff
path: root/mesecons_materials
diff options
context:
space:
mode:
authorFlorian Euchner <norrepli@gmail.com>2015-01-09 15:43:18 +0100
committerFlorian Euchner <norrepli@gmail.com>2015-01-09 15:43:18 +0100
commit3c82e2fc3afa8a799f67ee7c3b26a6d8931f4b23 (patch)
tree59194b7eaa098b890b526a27a4aca0bd2114a469 /mesecons_materials
parent80648b6c1443bf3221edc7197273da65330e4b09 (diff)
parentf02ccdfa5d96dc403f6b63e8c971da1326988fdd (diff)
downloadmesecons-3c82e2fc3afa8a799f67ee7c3b26a6d8931f4b23.tar
mesecons-3c82e2fc3afa8a799f67ee7c3b26a6d8931f4b23.tar.gz
mesecons-3c82e2fc3afa8a799f67ee7c3b26a6d8931f4b23.tar.bz2
mesecons-3c82e2fc3afa8a799f67ee7c3b26a6d8931f4b23.tar.xz
mesecons-3c82e2fc3afa8a799f67ee7c3b26a6d8931f4b23.zip
Merge pull request #199 from 163140/master
Allow using any node in group:sapling for making glue
Diffstat (limited to 'mesecons_materials')
-rw-r--r--mesecons_materials/init.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesecons_materials/init.lua b/mesecons_materials/init.lua
index f95373c..d16e866 100644
--- a/mesecons_materials/init.lua
+++ b/mesecons_materials/init.lua
@@ -14,7 +14,7 @@ minetest.register_craftitem("mesecons_materials:fiber", {
minetest.register_craft({
output = "mesecons_materials:glue 2",
type = "cooking",
- recipe = "default:sapling",
+ recipe = "group:sapling",
cooktime = 2
})