From b1dbc6a82b99bc5e18826db41f0218dc5061e74f Mon Sep 17 00:00:00 2001 From: Kurt Date: Tue, 17 Mar 2026 02:23:03 -0500 Subject: [PATCH] Update SAV4.cs --- PKHeX.Core/Saves/SAV4.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;