diff --git a/PKHeX/Legality/Core.cs b/PKHeX/Legality/Core.cs index 15e6b33d6..2f6a28567 100644 --- a/PKHeX/Legality/Core.cs +++ b/PKHeX/Legality/Core.cs @@ -776,6 +776,8 @@ private static IEnumerable getValidMoves(PKM pkm, GameVersion Version, bool List r = new List { 0 }; int species = pkm.Species; int lvl = pkm.CurrentLevel; + if (pkm.Format >= 7) + lvl = 100; // Move reminder can teach any level in movepool now! // Special Type Tutors Availability const bool moveTutor = true;