606
modifications
m |
m |
||
| Ligne 96 : | Ligne 96 : | ||
end | end | ||
local l = string.len(construction) | local l = string.len(construction) | ||
construction = string.sub(construction, 1, l -6) | if l > 0 then | ||
construction = string.sub(construction, 1, l - 6) | |||
end | |||
end | |||
-- adding gold coins back in?? | |||
if c.costs and c.costs['gold coins'] then | |||
construction = construction .. '<br />' .. i.icon('gold coins', c.costs['gold coins'], nil, 'gold coins', 'en') | |||
end | end | ||
local newRow = mw.html.create('tr') | local newRow = mw.html.create('tr') | ||
modifications