From 833a4e4efd71ccf33ef2c2c33a18731153e505e0 Mon Sep 17 00:00:00 2001 From: cornernote Date: Tue, 2 Oct 2012 22:07:05 +0930 Subject: [PATCH] added needles and sapling as fuel --- init.lua | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/init.lua b/init.lua index 59fbfdf..d46b4d6 100644 --- a/init.lua +++ b/init.lua @@ -82,6 +82,19 @@ minetest.register_node("snow:sapling_pine", { sounds = default.node_sound_defaults(), }) +minetest.register_craft({ + type = "fuel", + recipe = "snow:needles", + burntime = 1, +}) + +minetest.register_craft({ + type = "fuel", + recipe = "snow:sapling_pine", + burntime = 10, +}) + + --Snowballs ------------- snowball_GRAVITY=9