Support for embeds in .qsearch output + case

- Support for embeds in .qsearch output results
- Search can be case insensitive (changes made 011b951a29)
- Output shows keyword in lowercase as it's easier to read (line 104)
- Minor syntax cleanups
This commit is contained in:
Shikhir Arora 2017-03-02 03:46:10 -05:00 committed by GitHub
parent 9344c1b498
commit e2f855a729

View File

@ -101,7 +101,7 @@ namespace NadekoBot.Modules.Utility
}
return;
}
await Context.Channel.SendMessageAsync("💬 " + keyword.toLowerInvariant(); + ": " + keywordquote.Text.SanitizeMentions());
await Context.Channel.SendMessageAsync("💬 " + keyword.toLowerInvariant() + ": " + keywordquote.Text.SanitizeMentions());
}
[NadekoCommand, Usage, Description, Aliases]