diff --git a/src/NadekoBot/Modules/Searches/JokeCommands.cs b/src/NadekoBot/Modules/Searches/JokeCommands.cs index 95736efc6..a0229726f 100644 --- a/src/NadekoBot/Modules/Searches/JokeCommands.cs +++ b/src/NadekoBot/Modules/Searches/JokeCommands.cs @@ -39,7 +39,7 @@ public partial class Searches [Cmd] public async Task MagicItem() { - if (!_service.WowJokes.Any()) + if (!_service.MagicItems.Any()) { await ReplyErrorLocalizedAsync(strs.magicitems_not_loaded); return; diff --git a/src/NadekoBot/Modules/Searches/Searches.cs b/src/NadekoBot/Modules/Searches/Searches.cs index 16f25e968..c928c308a 100644 --- a/src/NadekoBot/Modules/Searches/Searches.cs +++ b/src/NadekoBot/Modules/Searches/Searches.cs @@ -199,7 +199,7 @@ public partial class Searches : NadekoModule if (!await ValidateQuery(ffs)) return; - var shortenedUrl = await _google.ShortenUrl($"https://lmgtfy.com/?q={Uri.EscapeDataString(ffs)}"); + var shortenedUrl = await _google.ShortenUrl($"https://letmegooglethat.com/?q={Uri.EscapeDataString(ffs)}"); await SendConfirmAsync($"<{shortenedUrl}>"); }