From b2c38843914cf328266c717bb6fc1d33a3d09a71 Mon Sep 17 00:00:00 2001 From: Kurt Date: Sun, 26 Nov 2017 22:19:18 -0800 Subject: [PATCH] Permit 5->6+ forme mismatch keldeo BW tutor -> transfer up doesn't update the form thanks @wwwwwwzx ! --- PKHeX.Core/Legality/Checks.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PKHeX.Core/Legality/Checks.cs b/PKHeX.Core/Legality/Checks.cs index 55fa8983d..e10c64daa 100644 --- a/PKHeX.Core/Legality/Checks.cs +++ b/PKHeX.Core/Legality/Checks.cs @@ -1913,7 +1913,7 @@ namespace PKHeX.Core break; case 647: // Keldeo { - if (pkm.Format == 5) // can mismatch in gen5 via BW tutor + if (pkm.Gen5) // can mismatch in gen5 via BW tutor and transfer up break; int index = Array.IndexOf(pkm.Moves, 548); // Secret Sword bool noSword = index < 0;