Module:Actions

Revision as of 23:39, 7 September 2024 by Noah (talk | contribs)

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

local p = {}

function p.builder(frame)
    local args = frame.args
    if args[1] == nil then return "no defined" end

    return "epic"
end

return p