// Token: 0x060027C8 RID: 10184 RVA: 0x000F0F00 File Offset: 0x000EF300
        public static bool process(SteamPlayer player, string text)
        {
            bool   flag   = false;
            bool   result = true;
            string a      = text.Substring(0, 1);

            if ((a == "@" || a == "/") && player.isAdmin)
            {
                flag   = true;
                result = false;
            }
            if (ChatManager.onCheckPermissions != null)
            {
                ChatManager.onCheckPermissions(player, text, ref flag, ref result);
            }
            if (flag)
            {
                Commander.execute(player.playerID.steamID, text.Substring(1));
            }
            return(result);
        }