Fix split-evolution regression

Closes #2230
ty @NinFanBoyFTW !
This commit is contained in:
Kurt 2019-01-06 22:18:14 -08:00
parent 1095fd0811
commit c42c019149
2 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ public static IReadOnlyList<EvolutionSet> GetArray(byte[] data)
var set = new EvolutionMethod[count];
for (int j = 0; j < set.Length; j++)
set[j] = GetMethod(data, offset);
set[j] = GetMethod(data, offset + (j * size));
evos[g4species] = new EvolutionSet3 { PossibleEvolutions = set };
}
return evos;