Make torch craftable again

This commit is contained in:
Wuzzy 2017-02-07 06:07:13 +01:00
parent 565ab99a23
commit 34a7108020
3 changed files with 9 additions and 10 deletions

View File

@ -46,14 +46,6 @@ minetest.register_craft({
}
})
minetest.register_craft({
output = "mcl_core:torch 4",
recipe = {
{ "group:coal" },
{ "mcl_core:stick" },
}
})
minetest.register_craft({
type = 'shapeless',
output = 'mcl_core:mossycobble',

View File

@ -23,7 +23,7 @@ minetest.register_craftitem("mcl_core:coal_lump", {
groups = { coal=1 },
inventory_image = "default_coal_lump.png",
stack_max = 64,
groups = { craftitem=1 },
groups = { craftitem=1, coal=1 },
})
minetest.register_craftitem("mcl_core:charcoal_lump", {
@ -31,7 +31,7 @@ minetest.register_craftitem("mcl_core:charcoal_lump", {
groups = { coal=1 },
inventory_image = "default_charcoal_lump.png",
stack_max = 64,
groups = { craftitem=1 },
groups = { craftitem=1, coal=1 },
})
minetest.register_craftitem("mcl_core:iron_nugget", {

View File

@ -103,4 +103,11 @@ minetest.register_lbm({
end
})
minetest.register_craft({
output = "torches:torch 4",
recipe = {
{ "group:coal" },
{ "mcl_core:stick" },
}
})