mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 00:37:11 +00:00
Fix gen6 evo tree resize miss
https://projectpokemon.org/home/forums/topic/46144-a-couple-of-new-problems-in-the-pkhex-version/ Thanks CreamatedReptile2018 !
This commit is contained in:
parent
93876d98eb
commit
c8897161b7
1 changed files with 1 additions and 1 deletions
|
@ -88,7 +88,7 @@ namespace PKHeX.Core
|
|||
var lineage = new EvolutionLineage[Entries.Count];
|
||||
for (int i = 0; i < Entries.Count; i++)
|
||||
lineage[i] = new EvolutionLineage();
|
||||
if (Game == GameVersion.ORAS)
|
||||
if (Game == GameVersion.Gen6)
|
||||
Array.Resize(ref lineage, MaxSpeciesTree + 1);
|
||||
|
||||
// Populate Lineages
|
||||
|
|
Loading…
Reference in a new issue