Module:Warning

From Halopedia, the Halo wiki

Revision as of 15:22, April 24, 2021 by Dab1001 (talk | contribs) (Created page with "local utils = require( 'Module:Utils' ) local p = {} -- Adapter for the Halopedia Lua utils.warning function, for use in templates function p.warning( frame ) return utils...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Documentation for this module may be created at ModuleDoc:Warning

local utils = require( 'Module:Utils' )

local p = {}

-- Adapter for the Halopedia Lua utils.warning function, for use in templates

function p.warning( frame )
	return utils.warning( frame.args[1], frame.args[2], frame.args[3], frame.args[4] )
end

return p