From af7df8b0ca73ecab4e6e4f75840b93debcf7f5ea Mon Sep 17 00:00:00 2001 From: Master Kwoth Date: Wed, 10 May 2017 11:34:40 +0200 Subject: [PATCH] Fixed pokemon trivia --- .../Modules/Games/Commands/Trivia/TriviaQuestionPool.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NadekoBot/Modules/Games/Commands/Trivia/TriviaQuestionPool.cs b/src/NadekoBot/Modules/Games/Commands/Trivia/TriviaQuestionPool.cs index ad752e95..694112dc 100644 --- a/src/NadekoBot/Modules/Games/Commands/Trivia/TriviaQuestionPool.cs +++ b/src/NadekoBot/Modules/Games/Commands/Trivia/TriviaQuestionPool.cs @@ -52,8 +52,8 @@ namespace NadekoBot.Modules.Games.Trivia return new TriviaQuestion("Who's That Pokémon?", map[num].ToTitleCase(), "Pokemon", - $@"http://nadekobot.xyz/images/pokemon/shadows/{num}.png", - $@"http://nadekobot.xyz/images/pokemon/real/{num}.png"); + $@"http://nadekobot.me/images/pokemon/shadows/{num}.png", + $@"http://nadekobot.me/images/pokemon/real/{num}.png"); } TriviaQuestion randomQuestion; while (exclude.Contains(randomQuestion = pool[rng.Next(0, pool.Length)])) ;