mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-25 12:01:06 +01:00
Make composters & barrels fuel for furnaces with the same burntime as chests.
This commit is contained in:
parent
c5993a60ae
commit
de3cdee09e
2 changed files with 13 additions and 1 deletions
|
@ -146,3 +146,9 @@ minetest.register_craft({
|
|||
{"group:wood", "group:wood_slab", "group:wood"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "fuel",
|
||||
recipe = "mcl_barrels:barrel_closed",
|
||||
burntime = 15,
|
||||
})
|
||||
|
|
|
@ -32,6 +32,12 @@ minetest.register_craft({
|
|||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "fuel",
|
||||
recipe = "mcl_composters:composter",
|
||||
burntime = 15,
|
||||
})
|
||||
|
||||
local compostability = {
|
||||
["mcl_cake:cake"] = 100,
|
||||
["mcl_farming:pumpkin_pie"] = 100,
|
||||
|
|
Loading…
Reference in a new issue