Fixes to pokemon names: porygon, porygon z and ho-oh

This commit is contained in:
Kwoth 2017-03-27 11:30:21 +02:00
parent 58996b7286
commit 0a32e0251e
2 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@ namespace NadekoBot.Modules.Games.Trivia
public static TriviaQuestionPool Instance { get; } = _instance ?? (_instance = new TriviaQuestionPool());
private const string questionsFile = "data/trivia_questions.json";
private const string pokemonMapPath = "data/pokemon/name-id_map3.json";
private const string pokemonMapPath = "data/pokemon/name-id_map4.json";
private readonly int maxPokemonId;
private Random rng { get; } = new NadekoRandom();