revert Misc. Fixes.
Added in burn times for slabs.
And then amend the commit to remove an oops.
This commit is contained in:
Michieal 2022-12-19 04:06:33 +00:00
parent 7a3f373425
commit f737df79e5
1 changed files with 17 additions and 0 deletions

View File

@ -729,6 +729,23 @@ local function register_craftings()
burntime = 7.5,
})
minetest.register_craft({
type = "fuel",
recipe = "mcl_stairs:slab_bamboo_plank",
burntime = 7.5,
})
minetest.register_craft({
type = "fuel",
recipe = "mcl_stairs:slab_bamboo_block",
burntime = 7.5,
})
minetest.register_craft({
type = "fuel",
recipe = "mcl_stairs:slab_bamboo_stripped",
burntime = 7.5,
})
end
create_nodes()