public async Task GetBestEmotesOtherUser(CommandContext ctx, DiscordUser user, [RemainingText] StatsCommandArgs?args = null)
        {
            args ??= new StatsCommandArgs();

            var userId = user.Id;

            var mention = user.GetNicknameOrUsername();

            await GetBestEmotesUser(ctx, userId, mention, args.Page, args.Interval);
        }