flintnsteel issues

master
Glunggi 2016-10-14 22:51:35 +02:00
parent 723db9d704
commit 973e48031f
2 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@
-- ~~~~~~~~~~~~~~~~
local cp = {}
minetest.register_tool("fake_fire:flint_and_steel", {
description = "Flint and steel",
description = "Flint and steel (fake)",
inventory_image = "flint_and_steel.png",
liquids_pointable = false,
stack_max = 1,

View File

@ -71,7 +71,7 @@ minetest.register_node("fire:permanent_flame", {
})
minetest.register_tool("fire:flint_and_steel", {
description = "Flint and Steel",
description = "Flint and Steel (the original)",
inventory_image = "fire_flint_steel.png",
on_use = function(itemstack, user, pointed_thing)
local player_name = user:get_player_name()
@ -99,7 +99,7 @@ minetest.register_tool("fire:flint_and_steel", {
minetest.register_craft({
output = "fire:flint_and_steel",
recipe = {
{"default:flint", "default:steel_ingot"}
{"fake_fire:flint", "fake_fire:flint", "default:steel_ingot"}
}
})