From ee4cfc119a923d50b9585dbfa48e722bb828b912 Mon Sep 17 00:00:00 2001 From: JP Guerrero Date: Wed, 14 Dec 2016 15:59:29 +0100 Subject: [PATCH] Polish displaying of big recipes --- init.lua | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/init.lua b/init.lua index ab0ed27..28c3afe 100644 --- a/init.lua +++ b/init.lua @@ -103,14 +103,9 @@ function craftguide:get_recipe(player_name, tooltip_l, item, recipe_num, recipes local Y = ceil(i / width + ((iY + 2) - min(2, rows))) if recipe_type == "normal" and width > 3 or rows > 3 then - btn_size = 3 / width - if width > 3 then - X = (btn_size * (i % width)) + offset_X - end - if rows > 3 then - Y = (btn_size * floor((i-1) / rows)) + (iY + 3) - - min(2, rows) - end + btn_size = width > 3 and 3 / width or 3 / rows + X = (btn_size * (i % width)) + offset_X + Y = (btn_size * floor((i-1) / width)) + (iY + 3) - min(2, rows) end local groups = extract_groups(v)