2,875
edits
m (Omit /Boosts from image links) |
No edit summary |
||
Line 1,231: | Line 1,231: | ||
return '' | return '' | ||
end | end | ||
end | |||
-- Special function that returns a Melvor idle icon | |||
-- Specifically used for a "DLC" column on tables. | |||
-- Avoids every item from receiving the "base game icon" | |||
function p.getDLCColumnIcon(id) | |||
local icon = p.getExpansionIcon(id) | |||
if icon == '' then | |||
icon = p.Melvor() .. ' ' | |||
end | |||
return icon | |||
end | end | ||
return p | return p |
edits