1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2025-01-11 18:40:25 +01:00

Change the flint_and_steel craft

This commit is contained in:
Ombridride 2015-06-29 12:04:47 +02:00
parent 4629f11a3d
commit 7ce665ea0d

View File

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