4,951
edits
Falterfire (talk | contribs) (swapped cooking uses to work properly) |
Falterfire (talk | contribs) (accounting for perfect items) |
||
Line 411: | Line 411: | ||
local qty = item2.cookingQty | local qty = item2.cookingQty | ||
table.insert(useArray, {item = item2, qty = qty, mats = mat, skill = 'Cooking', req = rowReq, xp = xp}) | table.insert(useArray, {item = item2, qty = qty, mats = mat, skill = 'Cooking', req = rowReq, xp = xp}) | ||
if item2.perfectItem ~= nil then | |||
local perfectItem = Items.getItemByID(item2.perfectItem) | |||
table.insert(useArray, {item = perfectItem, qty = qty, mats = mat, skill = 'Cooking', req = rowReq, xp = xp}) | |||
end | |||
end | end | ||
end | end |