mirror of
https://github.com/minetest-mods/craftguide.git
synced 2024-11-05 01:30:21 +01:00
Fix cooktime tooltip
This commit is contained in:
parent
ed861ea1b9
commit
6d3f8ce32a
3
init.lua
3
init.lua
|
@ -131,6 +131,7 @@ function craftguide:get_recipe(iX, iY, xoffset, recipe_num, recipes, show_usage)
|
|||
(icon == "shapeless" and "^[transformFX" or "") .. "]"
|
||||
end
|
||||
|
||||
local cooktime = width
|
||||
if recipe_type == "cooking" then
|
||||
width = 1
|
||||
elseif width == 0 then
|
||||
|
@ -157,7 +158,7 @@ function craftguide:get_recipe(iX, iY, xoffset, recipe_num, recipes, show_usage)
|
|||
local groups = extract_groups(v)
|
||||
local label = groups and "\nG" or ""
|
||||
local item_r = self:group_to_item(v)
|
||||
local tltip = self:get_tooltip(item_r, recipe_type, width, groups)
|
||||
local tltip = self:get_tooltip(item_r, recipe_type, cooktime, groups)
|
||||
|
||||
formspec = formspec ..
|
||||
"item_image_button[" .. X .. "," ..
|
||||
|
|
Loading…
Reference in New Issue
Block a user