Fix checking for big recipes

This commit is contained in:
JP Guerrero 2016-12-13 21:19:15 +01:00
parent dc1ba8245e
commit 757e537ea4
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ function craftguide:get_recipe(player_name, tooltip_l, item, recipe_num, recipes
-- https://github.com/kilbith/xdecor/blob/master/handlers/helpers.lua#L1
local rows = ceil(table.maxn(items) / width)
if width > 3 or rows > 3 then
if recipe_type == "normal" and width > 3 or rows > 3 then
formspec = formspec.."label["..(offset_X)..","..(iY+2)..
";Recipe is too big to\nbe displayed ("..
width.."x"..rows..")]"