Fix messages in craft command

This commit is contained in:
Jean-Patrick Guerrero 2019-10-04 00:52:06 +02:00
parent 5446e0dbdd
commit 06c5307a45
2 changed files with 8 additions and 17 deletions

View File

@ -1745,23 +1745,16 @@ function craftguide.show(name, item, show_usages)
reset_data(data)
item = reg_items[item] and item or query_item
local recipes, usages = get_recipes(item, data, player)
if not recipes and not usages and
not recipes_cache[item] and not usages_cache[item] then
return false, msg(name, S("No recipe or usage for this node"))
end
data.query_item = item
data.recipes, data.usages = get_recipes(item, data, player)
if not data.recipes and not data.usages then
if recipes_cache[item] then
return false, msg(name, S("You don't know a recipe for this node"))
end
if usages_cache[item] then
return false, msg(name, S("You don't know an usage for this node"))
end
if not recipes_cache[item] and not usages_cache[item] then
return false, msg(name, S("No recipe or usage for this node"))
end
end
data.recipes = recipes
data.usages = usages
if sfinv_only then
data.show_usages = show_usages

View File

@ -19,8 +19,6 @@ No item to show=
Collect items to reveal more recipes=
Show recipe(s) of the pointed node=
No node pointed=
You don't know a recipe for this node=
You don't know an usage for this node=
No recipe or usage for this node=
Node=
Entity=