Jump to content

Module:Fba: Difference between revisions

From Fifth Empire Wiki
use list from child module
 
m 1 revision imported
 
(No difference)

Latest revision as of 23:17, 23 January 2026

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

local p = {}

local list = require("Module:Fba/list")

function p.list(frame)
	return list.list(frame)
end

function p.clist(frame)
	return list.codes[frame.args[1]] or ""
end

function p.fbalist(frame)
	return list.fbas[frame.args[1]] or ""
end

return p