Craftguide: Don't display burntime for groups

This commit is contained in:
Wuzzy 2020-03-10 05:44:52 +01:00
parent 81fd3fad40
commit c6d6a2ce26
1 changed files with 2 additions and 2 deletions

View File

@ -444,12 +444,12 @@ local function get_tooltip(item, groups, cooktime, burntime)
tooltip = reg_items[item].description
end
if cooktime then
if not groups and cooktime then
tooltip = tooltip .. "\n" ..
S("Cooking time: @1", colorize("yellow", cooktime))
end
if burntime then
if not groups and burntime then
tooltip = tooltip .. "\n" ..
S("Burning time: @1", colorize("yellow", burntime))
end