diff --git a/PKHeX.Core/Saves/Substructures/Gen7/MyStatus7b.cs b/PKHeX.Core/Saves/Substructures/Gen7/MyStatus7b.cs index fabc3dcaf..f1a44a662 100644 --- a/PKHeX.Core/Saves/Substructures/Gen7/MyStatus7b.cs +++ b/PKHeX.Core/Saves/Substructures/Gen7/MyStatus7b.cs @@ -37,7 +37,7 @@ public int Game public int Gender { get => Data[Offset + 5]; - set => Data[Offset + 5] = (byte)value; + set => Data[Offset + 5] = OverworldGender = (byte)value; } public int Language @@ -51,5 +51,17 @@ public string OT get => SAV.GetString(Offset + 0x38, 0x1A); set => SAV.SetString(value, SAV.OTLength).CopyTo(Data, Offset + 0x38); } + + public byte StarterGender + { + get => Data[Offset + 0x0B9]; + set => Data[Offset + 0x0B9] = value; + } + + public byte OverworldGender // Model + { + get => Data[Offset + 0x108]; + set => Data[Offset + 0x108] = value; + } } } \ No newline at end of file