2,875
edits
m (Fill more of table) |
mNo edit summary |
||
Line 15: | Line 15: | ||
-- Determines the order of Icons | -- Determines the order of Icons | ||
local DLCParams = { | local DLCParams = { | ||
toth = | toth = icons.TotH(), | ||
aod = | aod = icons.AoD(), | ||
ita = | ita = icons.ItA() | ||
} | } | ||
Line 127: | Line 127: | ||
local pInputs = parseItemInOut(args, 'input') | local pInputs = parseItemInOut(args, 'input') | ||
local pOutputs = parseItemInOut(args, 'output') | local pOutputs = parseItemInOut(args, 'output') | ||
local dlcs = p. | local dlcs = p.getDLCIcons(dlc) | ||
local | local tbl = mw.html.create() | ||
tbl:tag("table") | |||
:addClass("wikitable") | :addClass("wikitable") | ||
:attr('style', 'width: 100%; text-align: center;') | :attr('style', 'width: 100%; text-align: center;') | ||
Line 186: | Line 186: | ||
:tag("td") | :tag("td") | ||
return tostring( | return tostring(tbl) | ||
end | end | ||
edits