mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 08:47:14 +00:00
Parse per generation not per format
A gen4 origin on a gen7 mon will no longer appear valid #377
This commit is contained in:
parent
bb2cc2b8d5
commit
b0ad606761
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ namespace PKHeX
|
|||
{
|
||||
try
|
||||
{
|
||||
switch (pk.Format)
|
||||
switch (pk.GenNumber)
|
||||
{
|
||||
case 6: parsePK6(pk); break;
|
||||
case 7: parsePK7(pk); break;
|
||||
|
|
Loading…
Reference in a new issue