From 42496def98b3b223e9a9d5c9dde6ad04f23e7db4 Mon Sep 17 00:00:00 2001 From: Kurt Date: Mon, 16 Mar 2026 01:57:21 -0500 Subject: [PATCH] PKM Editor BK4 don't set BallHGSS --- PKHeX.Core/PKM/Shared/G4PKM.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PKHeX.Core/PKM/Shared/G4PKM.cs b/PKHeX.Core/PKM/Shared/G4PKM.cs index e3d9e15e1..e41fac98b 100644 --- a/PKHeX.Core/PKM/Shared/G4PKM.cs +++ b/PKHeX.Core/PKM/Shared/G4PKM.cs @@ -289,7 +289,7 @@ public sealed override byte Ball BallDPPt = Clamp(value, Core.Ball.Cherish); // Only set the HG/SS value if it originated in HG/SS and was not an event. - if (WasCreatedInHGSS) + if (WasCreatedInHGSS && this is not BK4) BallHGSS = Clamp(value, Core.Ball.Sport); else BallHGSS = 0;