From 0e8057ecdae26cec6d8eeacaf092eaa5d1c68b1f Mon Sep 17 00:00:00 2001 From: FaceDeer Date: Sat, 4 Feb 2017 10:58:53 -0700 Subject: [PATCH] reduced cotton burn time Unfortunately cotton doesn't have an official burn time, so I'm just estimating. 1 seems more in line with existing items than 3, IMO. --- crafts.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crafts.lua b/crafts.lua index 0a4fcee..05c467f 100644 --- a/crafts.lua +++ b/crafts.lua @@ -38,7 +38,7 @@ minetest.register_craft({ } }) -local cotton_burn_time = 3 +local cotton_burn_time = 1 local wood_burn_time = minetest.get_craft_result({method="fuel", width=1, items={ItemStack("default:wood")}}).time local rope_burn_time = cotton_burn_time * 3 local rope_box_burn_time = wood_burn_time + rope_burn_time * 2