diff options
author | cheapie <no-email-for-you@example.com> | 2014-03-17 12:28:50 -0500 |
---|---|---|
committer | cheapie <no-email-for-you@example.com> | 2014-03-17 12:28:50 -0500 |
commit | d1613740c142fb59cc8d386e3c645cc7582cf827 (patch) | |
tree | 9aa662c4d9754a01345f9fe07abb960f23167cef | |
parent | 9d1258a9582ffeb67882740b8f1e82c9f4ab4194 (diff) | |
download | charcoal-d1613740c142fb59cc8d386e3c645cc7582cf827.tar charcoal-d1613740c142fb59cc8d386e3c645cc7582cf827.tar.gz charcoal-d1613740c142fb59cc8d386e3c645cc7582cf827.tar.bz2 charcoal-d1613740c142fb59cc8d386e3c645cc7582cf827.tar.xz charcoal-d1613740c142fb59cc8d386e3c645cc7582cf827.zip |
Added the ability to craft torches from charcoal
-rw-r--r-- | init.lua | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -15,3 +15,8 @@ minetest.register_craft({ recipe = "charcoal:charcoal_lump", burntime = 8, }) +minetest.register_craft({ + type = "shapeless", + recipe = {"charcoal:charcoal_lump","default:stick"}, + output = "default:torch", +}) |