コード例 #1
0
ファイル: InfoModule.cs プロジェクト: jpmac26/JackFrost-Bot
 public async Task ShowWarns([Summary("The user whose warns to show.")] SocketGuildUser mention = null)
 {
     if (Xml.CommandAllowed("show warns", Context))
     {
         var embed = Embeds.ShowWarns((IGuildChannel)Context.Channel, mention);
         await Context.Channel.SendMessageAsync("", embed : embed).ConfigureAwait(false);
     }
 }