2x coal lumps give 12x coal powder
This commit is contained in:
parent
1ff0f15a2d
commit
9e350517f2
6
init.lua
6
init.lua
@ -72,13 +72,13 @@ minetest.register_craftitem("real_torch:coal_powder", {
|
||||
minetest.register_craft({
|
||||
type = "fuel",
|
||||
recipe = "real_torch:coal_powder",
|
||||
burntime = 10,
|
||||
burntime = 8,
|
||||
})
|
||||
|
||||
-- 2x coal lumps = 8x coal powder
|
||||
-- 2x coal lumps = 12x coal powder
|
||||
minetest.register_craft({
|
||||
type = "shapeless",
|
||||
output = "real_torch:coal_powder 10",
|
||||
output = "real_torch:coal_powder 12",
|
||||
recipe = {"default:coal_lump", "default:coal_lump"},
|
||||
})
|
||||
|
||||
|
@ -3,7 +3,7 @@ Real Torch by TenPlus1
|
||||
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.
|
||||
|
||||
- 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
|
||||
- punching an unlit torch with coal powder relights it
|
||||
- punching an unlit torch with flint & steel relights it
|
||||
|
Loading…
x
Reference in New Issue
Block a user