Fix BATREV saves converting mystery gifts

OT field needed for gift string get/set. Other values unnecessary for
basic function.
#1151
This commit is contained in:
Kurt
2017-05-18 17:51:08 -07:00
parent 933bee7778
commit 3d498c6a1e

View File

@@ -321,7 +321,7 @@ public virtual MysteryGiftAlbum GiftAlbum
public virtual ushort TID { get; set; }
public virtual ushort SID { get; set; }
public int TrainerID7 => (int)((uint)(TID | (SID << 16)) % 1000000);
public virtual string OT { get; set; }
public virtual string OT { get; set; } = "PKHeX";
public virtual int PlayedHours { get; set; }
public virtual int PlayedMinutes { get; set; }
public virtual int PlayedSeconds { get; set; }