Update Searches.cs

Changed fail message for manga lookup - fail message returned "anime" instead of "manga"
This commit is contained in:
Rob 2016-02-23 22:48:14 -05:00
parent e8adbde9d7
commit 0510f4b3bf

View File

@ -65,7 +65,7 @@ namespace NadekoBot.Modules {
var result = await SearchHelper.GetMangaQueryResultLink(e.GetArg("query"));
if (result == null) {
await e.Channel.SendMessage("Failed to find that anime.");
await e.Channel.SendMessage("Failed to find that manga.");
return;
}
await e.Channel.SendMessage(result.ToString());