From efe77e3b5c2ad511d15ffd2c7abd761948d61691 Mon Sep 17 00:00:00 2001 From: Kurt Date: Sat, 16 Jun 2018 10:29:36 -0700 Subject: [PATCH] Don't clear unown forme on pk4->bk4 Closes #2011 --- PKHeX.Core/PKM/PK4.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PKHeX.Core/PKM/PK4.cs b/PKHeX.Core/PKM/PK4.cs index faf7562d0..b1e7be558 100644 --- a/PKHeX.Core/PKM/PK4.cs +++ b/PKHeX.Core/PKM/PK4.cs @@ -340,7 +340,7 @@ public BK4 ConvertToBK4() BK4 bk4 = ConvertTo(); // Enforce DP content only (no PtHGSS) - if (AltForm != 0 && !PersonalTable.DP[Species].HasFormes) + if (AltForm != 0 && !PersonalTable.DP[Species].HasFormes && Species != 201) bk4.AltForm = 0; if (HeldItem > Legal.MaxItemID_4_DP) bk4.HeldItem = 0;