2x coal lumps give 12x coal powder

This commit is contained in:
TenPlus1 2017-09-15 19:44:19 +01:00
parent 1ff0f15a2d
commit 9e350517f2
2 changed files with 4 additions and 4 deletions

View File

@ -72,13 +72,13 @@ minetest.register_craftitem("real_torch:coal_powder", {
minetest.register_craft({ minetest.register_craft({
type = "fuel", type = "fuel",
recipe = "real_torch:coal_powder", recipe = "real_torch:coal_powder",
burntime = 10, burntime = 8,
}) })
-- 2x coal lumps = 8x coal powder -- 2x coal lumps = 12x coal powder
minetest.register_craft({ minetest.register_craft({
type = "shapeless", type = "shapeless",
output = "real_torch:coal_powder 10", output = "real_torch:coal_powder 12",
recipe = {"default:coal_lump", "default:coal_lump"}, recipe = {"default:coal_lump", "default:coal_lump"},
}) })

View File

@ -3,7 +3,7 @@ Real Torch by TenPlus1
This mod changes minetest torches so that they have a life of 8-10 minutes which This mod changes minetest torches so that they have a life of 8-10 minutes which
is configurable using the torch_min_duration and torch_max_duration settings. is configurable using the torch_min_duration and torch_max_duration settings.
- 2x coal lumps can be crafted into 10x coal powder - 2x coal lumps can be crafted into 12x coal powder
- coal powder and an unlit torch can be crafted into a lit torch again - coal powder and an unlit torch can be crafted into a lit torch again
- punching an unlit torch with coal powder relights it - punching an unlit torch with coal powder relights it
- punching an unlit torch with flint & steel relights it - punching an unlit torch with flint & steel relights it