mirror of
https://github.com/kwsch/PKHeX
synced 2025-02-17 05:48:44 +00:00
Fix gen6 gamesync ID read
This commit is contained in:
parent
c4326698a5
commit
bbe1cf3ee1
1 changed files with 2 additions and 0 deletions
|
@ -64,6 +64,8 @@ namespace PKHeX.Core
|
|||
public override int SubRegion { get => Status.SubRegion; set => Status.SubRegion = value; }
|
||||
public override int Country { get => Status.Country; set => Status.Country = value; }
|
||||
public override int ConsoleRegion { get => Status.ConsoleRegion; set => Status.ConsoleRegion = value; }
|
||||
public override int GameSyncIDSize => MyStatus6.GameSyncIDSize; // 64 bits
|
||||
public override string GameSyncID { get => Status.GameSyncID; set => Status.GameSyncID = value; }
|
||||
public override int PlayedHours { get => Played.PlayedHours; set => Played.PlayedHours = value; }
|
||||
public override int PlayedMinutes { get => Played.PlayedMinutes; set => Played.PlayedMinutes = value; }
|
||||
public override int PlayedSeconds { get => Played.PlayedSeconds; set => Played.PlayedSeconds = value; }
|
||||
|
|
Loading…
Add table
Reference in a new issue