Fix Gen4 platinum detection

Encounter Method now appears as intended
(old check ignored 12)
This commit is contained in:
Kaphotics 2016-04-27 21:09:50 -07:00
parent 397fb30df5
commit 888d979fce

View file

@ -430,7 +430,7 @@ namespace PKHeX
public bool AO => Version == (int)GameVersion.AS || Version == (int)GameVersion.OR;
public bool SM => Version == (int)GameVersion.SN || Version == (int)GameVersion.MN;
public bool Gen5 => Version >= 20 && Version <= 23;
public bool Gen4 => Version >= 10 && Version < 12 || Version >= 7 && Version <= 8;
public bool Gen4 => Version >= 7 && Version <= 12 && Version != 9;
public bool Gen3 => Version >= 1 && Version <= 5 || Version == 15;
public bool GenU => !(Gen6 || Gen5 || Gen4 || Gen3);