Minor cleaning

This commit is contained in:
Jean-Patrick Guerrero
2019-10-10 17:46:12 +02:00
parent 4fb4fe1763
commit ee1eac039e
2 changed files with 4 additions and 12 deletions

View File

@ -740,7 +740,6 @@ local function get_output_fs(fs, L)
end
local function get_grid_fs(fs, rcp, spacing)
if not rcp then return end
local width = rcp.width or 1
local replacements = rcp.replacements
local rarity = rcp.rarity
@ -913,7 +912,9 @@ local function get_panels(data, fs)
end
local rcp = k == "recipes" and v[data.rnum] or v[data.unum]
get_grid_fs(fs, rcp, spacing)
if rcp then
get_grid_fs(fs, rcp, spacing)
end
end
end