Add quote ID to output of .qsearch

This commit is contained in:
Shikhir Arora 2017-03-22 02:08:08 -04:00
parent 58996b7286
commit 3604f6a247

View File

@ -97,7 +97,7 @@ namespace NadekoBot.Modules.Utility
if (keywordquote == null) if (keywordquote == null)
return; return;
await Context.Channel.SendMessageAsync("💬 " + keyword.ToLowerInvariant() + ": " + await Context.Channel.SendMessageAsync($"`#{keywordquote.Id}` 💬 " + keyword.ToLowerInvariant() + ": " +
keywordquote.Text.SanitizeMentions()); keywordquote.Text.SanitizeMentions());
} }
@ -176,4 +176,4 @@ namespace NadekoBot.Modules.Utility
} }
} }
} }
} }