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({
|
||||
output = 'default:torch 4',
|
||||
recipe = {
|
||||
{'fun_caves:charcoal'},
|
||||
{'group:coal'},
|
||||
{'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
|
||||
minetest.register_craft({
|
||||
output = "tnt:gunpowder",
|
||||
type = "shapeless",
|
||||
recipe = {"fun_caves:charcoal", "default:gravel"}
|
||||
recipe = {"group:coal", "default:gravel"}
|
||||
})
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue