Module:icons

Revision as of 13:36, 9 June 2026 by Mex (talk | contribs)

Documentation for this module may be created at Module:icons/doc

local p = {}

function p.main(frame)
	local title = mw.title.new("OnAddIVNetworkEvent")
	local text = title:getContent()
	local args = p.getArgs(frame)
	return args.games
end

function p.getArgs(frame)
	if p.argsCache then
		return p.argsCache
	else
		local args = frame:getParent().args
		p.argsCache = args
		return args
	end
end

return p