Module:Chat

From Growtopia
Revision as of 05:04, 24 January 2019 by >NekoPillow
Jump to navigationJump to search

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

local chat = {}

function chat.parse(frame)
    local str = frame.args[1]
    
    return str:gsub("`[0-9wobpqertas!@#$^&`]",function(c)
        
        return c:sub(2,2)
    end)
end

return chat