summaryrefslogtreecommitdiff
path: root/init.lua
diff options
context:
space:
mode:
Diffstat (limited to 'init.lua')
-rw-r--r--init.lua12
1 files changed, 12 insertions, 0 deletions
diff --git a/init.lua b/init.lua
index 7ac77e2..53e4562 100644
--- a/init.lua
+++ b/init.lua
@@ -28,6 +28,18 @@ minetest.register_craft({
}
})
+-- Bonus recipe for Minetest Game
+if minetest.get_modpath("default") then
+ minetest.register_craft({
+ output = "doc_encyclopedia:encyclopedia",
+ recipe = {
+ { "default:book" },
+ { "default:book" },
+ { "default:book" },
+ }
+ })
+end
+
minetest.register_craft({
type = "fuel",
recipe = "doc_encyclopedia:encyclopedia",