diff --git a/PKHeX.Core/Saves/SAV4.cs b/PKHeX.Core/Saves/SAV4.cs index deb2b98e4..7bfed27fc 100644 --- a/PKHeX.Core/Saves/SAV4.cs +++ b/PKHeX.Core/Saves/SAV4.cs @@ -238,10 +238,10 @@ private int GetActiveExtraBlock(BlockInfo4 block) private int OFS_Backdrop => FashionCase + 0x28; protected int OFS_Chatter = int.MinValue; - public Chatter4 Chatter => new(this, Buffer[OFS_Chatter..]); + public Chatter4 Chatter => new(this, GeneralBuffer[OFS_Chatter..]); protected int OFS_Record = int.MinValue; - public Record4 Records => new(this, Buffer.Slice(OFS_Record, Record4.GetSize(this))); + public Record4 Records => new(this, GeneralBuffer.Slice(OFS_Record, Record4.GetSize(this))); protected int OFS_Groups = int.MinValue;