diff options
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -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", |