From 0d9241775fec8a4cccaffaf549af8fed8f7b7277 Mon Sep 17 00:00:00 2001 From: Kurt Date: Mon, 21 Nov 2016 21:15:21 -0800 Subject: [PATCH] Add move reminder -->100 for gen7 Learn any move in movepool. Assuming this is a change that is kept for future generations. --- PKHeX/Legality/Core.cs | 2 ++ 1 file changed, 2 insertions(+) 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;