forked from VoxeLibre/VoxeLibre
Merge remote-tracking branch 'origin/mcl_bamboo_new' into mcl_bamboo_new
# Conflicts: # mods/ITEMS/mcl_bamboo/init.lua
This commit is contained in:
commit
63ea851e63
|
@ -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()
|
||||
|
@ -834,3 +851,4 @@ local function addgroups(name, ...)
|
|||
return minetest.override_item(name, {groups = groups})
|
||||
end
|
||||
--]]
|
||||
|
||||
|
|
Loading…
Reference in New Issue