summaryrefslogtreecommitdiff
path: root/chicken.lua
diff options
context:
space:
mode:
authorTenPlus1 <kinsellaja@yahoo.com>2018-02-06 20:59:40 +0000
committerTenPlus1 <kinsellaja@yahoo.com>2018-02-06 20:59:40 +0000
commitf9e1b5880cf74c4b2beb0397092ec5a0c4e2ebee (patch)
tree295677d51e80c4a049cdb466de28bbd130d28dc5 /chicken.lua
parent8d0df9b26bbcbab0be492873c58315844082e214 (diff)
add items as fuel
Diffstat (limited to 'chicken.lua')
-rw-r--r--chicken.lua6
1 files changed, 6 insertions, 0 deletions
diff --git a/chicken.lua b/chicken.lua
index 5b95c8c..74740b1 100644
--- a/chicken.lua
+++ b/chicken.lua
@@ -287,3 +287,9 @@ minetest.register_craftitem(":mobs:chicken_feather", {
description = S("Feather"),
inventory_image = "mobs_chicken_feather.png",
})
+
+minetest.register_craft({
+ type = "fuel",
+ recipe = "mobs:chicken_feather",
+ burntime = 1,
+})