Module:Param Parse: Difference between revisions
Jump to navigation
Jump to search
Content added Content deleted
InvalidCards (talk | contribs) (nil check) |
InvalidCards (talk | contribs) (I think it's nicer if 0 silver is also shown if gold is set) |
||
Line 209: | Line 209: | ||
end |
end |
||
local silver = math.floor(val / 1000) |
local silver = math.floor(val / 1000) |
||
if silver > 0 then |
if (silver > 0) or (gold > 0) then |
||
output = output .. silver .. '[[File:Silver coin.png|link=]]' |
output = output .. silver .. '[[File:Silver coin.png|link=]]' |
||
val = val - (silver * 1000) |
val = val - (silver * 1000) |