Anonymous

Module:Calculator/AgilityObstacle: Difference between revisions

From Melvor Idle
Fix derp
(Adjust to new Icons.Currency function)
(Fix derp)
Line 10: Line 10:


local iconTable = {
local iconTable = {
['GP']  = Icons._Currency('GP', amount),
    ['GP']  = function(amount) return Icons._Currency('GP', amount) end,
['SC']  = Icons._Currency('SC', amount),
    ['SC']  = function(amount) return Icons._Currency('SC', amount) end,
['AP']  = Icons._Currency('AP', amount),
    ['AP']  = function(amount) return Icons._Currency('AP', amount) end,
['ASC'] = Icons._Currency('ASC', amount),
    ['ASC'] = function(amount) return Icons._Currency('ASC', amount) end,
}
}
local function getItemIcon(itemName, amount)
local function getItemIcon(itemName, amount)
return iconTable[itemName] or Icons.Icon({itemName, type='item', qty = amount, notext=true})
return iconTable[itemName] or Icons.Icon({itemName, type='item', qty = amount, notext=true})
2,869

edits