From b2c54b7a43b893ec5e0f080ab5ba515e9f01d04b Mon Sep 17 00:00:00 2001 From: Kurt Date: Sat, 28 Apr 2018 15:58:53 -0700 Subject: [PATCH] Apply trade memory when changing handlers for pk6 --- PKHeX.Core/Legality/Structures/ITrainerInfo.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/PKHeX.Core/Legality/Structures/ITrainerInfo.cs b/PKHeX.Core/Legality/Structures/ITrainerInfo.cs index 70648de37..2c3992457 100644 --- a/PKHeX.Core/Legality/Structures/ITrainerInfo.cs +++ b/PKHeX.Core/Legality/Structures/ITrainerInfo.cs @@ -47,6 +47,7 @@ public static void ApplyHandlingTrainerInfo(this ITrainerInfo SAV, PKM pk) { pk.Geo1_Country = SAV.Country; pk.Geo1_Region = SAV.SubRegion; + ((PK6)pk).TradeMemory(true); } } }