From e6b2da51db6d6b83dd084f59c27424d01aec271e Mon Sep 17 00:00:00 2001 From: Kurt Date: Thu, 16 Mar 2017 21:22:49 -0700 Subject: [PATCH] Remove arceus plate 4->5 Since 4->5 now allows item transfer, remove plate when appropriate. --- PKHeX/PKM/PK4.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/PKHeX/PKM/PK4.cs b/PKHeX/PKM/PK4.cs index 6fea25e61..b69f5c010 100644 --- a/PKHeX/PKM/PK4.cs +++ b/PKHeX/PKM/PK4.cs @@ -448,7 +448,10 @@ public PK5 convertToPK5() // Arceus Type Changing -- Plate forcibly removed. if (pk5.Species == 493) + { pk5.AltForm = 0; + pk5.HeldItem = 0; + } // Fix PP pk5.Move1_PP = pk5.getMovePP(pk5.Move1, pk5.Move1_PPUps);