예제 #1
0
파일: Info.cs 프로젝트: Spoertm/Clubber
    public async Task CurrentBestSplits()
    {
        BestSplit[] bestSplits = await _databaseHelper.GetBestSplits();

        Embed bestSplitsEmbed = EmbedHelper.CurrentBestSplits(bestSplits);

        await ReplyAsync(embed : bestSplitsEmbed, allowedMentions : AllowedMentions.None, messageReference : Context.Message.Reference);
    }