From 106d09c74f4bc760ca29b4676beffd18e08bcc85 Mon Sep 17 00:00:00 2001 From: Kurt Date: Wed, 21 Jan 2026 20:07:39 -0600 Subject: [PATCH] SIZE_G9ZA_201 --- PKHeX.Core/Saves/Util/SaveUtil.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/PKHeX.Core/Saves/Util/SaveUtil.cs b/PKHeX.Core/Saves/Util/SaveUtil.cs index b83d8af90..bc56a9012 100644 --- a/PKHeX.Core/Saves/Util/SaveUtil.cs +++ b/PKHeX.Core/Saves/Util/SaveUtil.cs @@ -17,6 +17,7 @@ public static class SaveUtil private const int SIZE_G9ZA_100 = 0x2F3284; private const int SIZE_G9ZA_102 = 0x2F3289; // +5 for Ranked bug fix boolean block private const int SIZE_G9ZA_200 = 0x309FA6; // Mega Dimension DLC + private const int SIZE_G9ZA_201 = 0x309FB3; // +D for revision private const int SIZE_G9_0 = 0x31626F; // 1.0.0 fresh private const int SIZE_G9_0a = 0x31627C; // 1.0.0 after multiplayer @@ -121,7 +122,7 @@ public static class SaveUtil new SaveHandlerNSO(), ]; - private static bool IsSizeGen9ZA(int length) => length is SIZE_G9ZA_100 or SIZE_G9ZA_102 or SIZE_G9ZA_200; + private static bool IsSizeGen9ZA(int length) => length is SIZE_G9ZA_100 or SIZE_G9ZA_102 or SIZE_G9ZA_200 or SIZE_G9ZA_201; private static bool IsSizeGen9SV(int length) => length is SIZE_G9_0 or SIZE_G9_0a or