diff options
author | TenPlus1 <kinsellaja@yahoo.com> | 2018-02-06 20:59:11 +0000 |
---|---|---|
committer | TenPlus1 <kinsellaja@yahoo.com> | 2018-02-06 20:59:11 +0000 |
commit | 59fee9aea7abb27bce2ad0a1f837dd2e8b852f8a (patch) | |
tree | c4bd4f2494ae0b7266dfc0df90ed71537c4e08b8 | |
parent | e0eae71b48450153a361ae0e636fa6506ab790fc (diff) |
add items as fuel
-rw-r--r-- | crafts.lua | 31 |
1 files changed, 31 insertions, 0 deletions
@@ -136,3 +136,34 @@ default.register_fence("mobs:fence_wood", { }, }, }) + +-- items that can be used as fuel +minetest.register_craft({ + type = "fuel", + recipe = "mobs:nametag", + burntime = 3, +}) + +minetest.register_craft({ + type = "fuel", + recipe = "mobs:lasso", + burntime = 7, +}) + +minetest.register_craft({ + type = "fuel", + recipe = "mobs:net", + burntime = 8, +}) + +minetest.register_craft({ + type = "fuel", + recipe = "mobs:leather", + burntime = 4, +}) + +minetest.register_craft({ + type = "fuel", + recipe = "mobs:saddle", + burntime = 7, +}) |