Update Searches.cs
Changed fail message for manga lookup - fail message returned "anime" instead of "manga"
This commit is contained in:
parent
e8adbde9d7
commit
0510f4b3bf
@ -65,7 +65,7 @@ namespace NadekoBot.Modules {
|
|||||||
|
|
||||||
var result = await SearchHelper.GetMangaQueryResultLink(e.GetArg("query"));
|
var result = await SearchHelper.GetMangaQueryResultLink(e.GetArg("query"));
|
||||||
if (result == null) {
|
if (result == null) {
|
||||||
await e.Channel.SendMessage("Failed to find that anime.");
|
await e.Channel.SendMessage("Failed to find that manga.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
await e.Channel.SendMessage(result.ToString());
|
await e.Channel.SendMessage(result.ToString());
|
||||||
|
Loading…
Reference in New Issue
Block a user