mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-14 16:27:21 +00:00
Alter gen6 version detect
Fixes blank save file detection
This commit is contained in:
parent
455f3f3275
commit
260b8d64b4
1 changed files with 2 additions and 2 deletions
|
@ -48,8 +48,8 @@ namespace PKHeX
|
|||
public PersonalTable Personal { get; set; }
|
||||
|
||||
public bool ORASDEMO => Data.Length == SaveUtil.SIZE_G6ORASDEMO;
|
||||
public bool ORAS => Version == GameVersion.OR || Version == GameVersion.AS;
|
||||
public bool XY => Version == GameVersion.X || Version == GameVersion.Y;
|
||||
public bool ORAS => Data.Length == SaveUtil.SIZE_G6ORAS;
|
||||
public bool XY => Data.Length == SaveUtil.SIZE_G6XY;
|
||||
public bool B2W2 => Version == GameVersion.B2W2;
|
||||
public bool BW => Version == GameVersion.BW;
|
||||
public bool HGSS => Version == GameVersion.HGSS;
|
||||
|
|
Loading…
Reference in a new issue