Change charcoal references to group.
This commit is contained in:
parent
28c3d82cfa
commit
73354d3a96
1 changed files with 11 additions and 2 deletions
13
treegen.lua
13
treegen.lua
|
@ -247,16 +247,25 @@ minetest.register_craft({
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = 'default:torch 4',
|
output = 'default:torch 4',
|
||||||
recipe = {
|
recipe = {
|
||||||
{'fun_caves:charcoal'},
|
{'group:coal'},
|
||||||
{'group:stick'},
|
{'group:stick'},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = 'default:coalblock',
|
||||||
|
recipe = {
|
||||||
|
{'group:coal', 'group:coal', 'group:coal'},
|
||||||
|
{'group:coal', 'group:coal', 'group:coal'},
|
||||||
|
{'group:coal', 'group:coal', 'group:coal'},
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
if minetest.get_modpath('tnt') then
|
if minetest.get_modpath('tnt') then
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "tnt:gunpowder",
|
output = "tnt:gunpowder",
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
recipe = {"fun_caves:charcoal", "default:gravel"}
|
recipe = {"group:coal", "default:gravel"}
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue