From 0510f4b3bfec3f6ef6dfe2f048c186685ec84401 Mon Sep 17 00:00:00 2001 From: Rob Date: Tue, 23 Feb 2016 22:48:14 -0500 Subject: [PATCH] Update Searches.cs Changed fail message for manga lookup - fail message returned "anime" instead of "manga" --- NadekoBot/Modules/Searches.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NadekoBot/Modules/Searches.cs b/NadekoBot/Modules/Searches.cs index 84a9aa32..f55756d2 100644 --- a/NadekoBot/Modules/Searches.cs +++ b/NadekoBot/Modules/Searches.cs @@ -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());