Module:Items/SourceTables: Difference between revisions

_getItemSources: Support Golbin Raid exclusive items
(_getSuperheatTable: Further fixes for v1.0.2 data)
(_getItemSources: Support Golbin Raid exclusive items)
Line 603: Line 603:
if item.isToken and item.skill ~= nil then
if item.isToken and item.skill ~= nil then
table.insert(lineArray, Icons._SkillReq(Constants.getSkillName(item.skill), 1))
table.insert(lineArray, Icons._SkillReq(Constants.getSkillName(item.skill), 1))
end
-- Golbin Raid exclusive items
if item.golbinRaidExclusive then
table.insert(lineArray, Icons.Icon({'Golbin Raid', type='pet', img='Golden Golbin'}))
end
end