Jump to content
Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

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

local p = {}

function p.prefix(frame)
    local key = frame.args[1] or ""
    if key:sub(1, 4) == "item" then
        return key
    elseif key:sub(1, 5) == "token" then
        return key
    elseif key:sub(1, 1) == "!" then
        return key
    elseif key:sub(1, 5) == "flags" then
		return key
    else
        return "system." .. key
    end
end

return p