示例#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);
    }