Fixed pokemon trivia

This commit is contained in:
Master Kwoth 2017-05-10 11:34:40 +02:00
parent d37b65fe7f
commit af7df8b0ca

View File

@ -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)])) ;