- Welcome to the Kancolle Wiki!
- If you have any questions regarding site content, account registration, etc., please visit the KanColle Wiki Discord
Changes
Jump to navigation
Jump to search
Line 4:
Line 4:
− +
+
Explicitly get args
function ShipInfo.Infobox(frame)
function ShipInfo.Infobox(frame)
return ShipInfoKai:Infobox(unpack(getArgs(frame)))
local args = getArgs(frame)
return ShipInfoKai:Infobox(args["name"], args["model"])
end
end
return ShipInfo
return ShipInfo