Compare commits

..

1 Commits
1.9a ... 1.9

Author SHA1 Message Date
a77fbb0cf5 Update README + API 2019-10-04 00:31:11 +02:00
2 changed files with 15 additions and 10 deletions

View File

@ -1745,20 +1745,24 @@ function craftguide.show(name, item, show_usages)
reset_data(data) reset_data(data)
item = reg_items[item] and item or query_item item = reg_items[item] and item or query_item
local recipes, usages = get_recipes(item, data, player)
if not recipes and not usages then 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 if not recipes_cache[item] and not usages_cache[item] then
return false, msg(name, S("No recipe or usage for this node")) return false, msg(name, S("No recipe or usage for this node"))
end end
return false, msg(name, S("You don't know a recipe or usage for this node"))
end end
data.query_item = item
data.recipes = recipes
data.usages = usages
if sfinv_only then if sfinv_only then
data.show_usages = show_usages data.show_usages = show_usages
end end
@ -1787,7 +1791,7 @@ register_command("craft", {
end end
if not node_name then if not node_name then
return false, msg(name, S("No node pointed")) return false, clr("red", "[craftguide] ") .. S("No node pointed")
end end
return true, craftguide.show(name, node_name) return true, craftguide.show(name, node_name)

View File

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