Change the flint_and_steel craft

This commit is contained in:
Ombridride 2015-06-29 12:04:47 +02:00
parent 4629f11a3d
commit 7ce665ea0d
1 changed files with 8 additions and 6 deletions

View File

@ -210,12 +210,14 @@ minetest.register_tool("fake_fire:flint_and_steel", {
-- CRAFTS
minetest.register_craft({
output = 'fake_fire:flint_and_steel',
recipe = {
{"default:obsidian_shard"},
{"default:steel_ingot"},
{"default:steel_ingot"}
}
type = "shapeless",
output = 'fake_fire:flint_and_steel',
recipe = {
"default:obsidian_shard",
"default:steel_ingot",
"default:coal_lump",
"group:wool"
}
-- /MFF (Mg|06/24/2015)
})