diff options
author | TenPlus1 <kinsellaja@yahoo.com> | 2016-01-09 12:25:33 +0000 |
---|---|---|
committer | TenPlus1 <kinsellaja@yahoo.com> | 2016-01-09 12:25:33 +0000 |
commit | ad7b63b86971ccae7b1abc008196c9e9553b54ec (patch) | |
tree | 05fe8e2a0ea0e9b8d4939cffaed46e6abb0cf9f4 /plantlife.lua | |
parent | 94873618b17859a6f3cc9c3a02dcc88b511075cf (diff) |
Optimize and tidy code.
Diffstat (limited to 'plantlife.lua')
-rw-r--r-- | plantlife.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plantlife.lua b/plantlife.lua index acb998b..9395362 100644 --- a/plantlife.lua +++ b/plantlife.lua @@ -29,7 +29,7 @@ minetest.register_node("ethereal:fire_flower", { minetest.register_craft({ type = "fuel", recipe = "ethereal:fire_flower", - burntime = 60, + burntime = 40, }) -- Fire Dust @@ -48,7 +48,7 @@ minetest.register_craft({ minetest.register_craft({ type = "fuel", recipe = "ethereal:fire_dust", - burntime = 30, + burntime = 20, }) -- Fern (boston) @@ -549,4 +549,4 @@ minetest.register_craft({ {"","ethereal:palm_wax"}, {"","ethereal:palm_wax"}, } -})
\ No newline at end of file +}) |