|
|
@@ -31,7 +31,10 @@ namespace Discord.Commands |
|
|
|
/// </param> |
|
|
|
/// <param name="isTTS">Specifies if Discord should read this <paramref name="message"/> aloud using text-to-speech.</param> |
|
|
|
/// <param name="embed">An embed to be displayed alongside the <paramref name="message"/>.</param> |
|
|
|
/// <param name="allowedMentions">The types of mention notifications that will be sent with this message.</param> |
|
|
|
/// <param name="allowedMentions"> |
|
|
|
/// Specifies if notifications are sent for mentioned users and roles in the message <paramref name="text"/>. |
|
|
|
/// If <c>null</c>, all mentioned roles and users will be notified. |
|
|
|
/// </param> |
|
|
|
protected virtual async Task<IUserMessage> ReplyAsync(string message = null, bool isTTS = false, Embed embed = null, RequestOptions options = null, AllowedMentions allowedMentions = null) |
|
|
|
{ |
|
|
|
return await Context.Channel.SendMessageAsync(message, isTTS, embed, options, allowedMentions).ConfigureAwait(false); |
|
|
|