Sarna News: Bad 'Mechs - Icestorm

Module:Module wikitext

Revision as of 18:32, 11 May 2023 by Deadfire (talk | contribs) (Creation (as this is needed))
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

local p = {}

p.text = ''

function p.main()
	return p.text
end

function p._addText(text, preprocessFrame)
	if preprocessFrame ~= false then
		text = (preprocessFrame or mw.getCurrentFrame()):preprocess(text)
	end
	p.text = p.text .. text
end

return p