Add move reminder -->100 for gen7

Learn any move in movepool.
Assuming this is a change that is kept for future generations.
This commit is contained in:
Kurt 2016-11-21 21:15:21 -08:00
parent 70bd5bc990
commit 0d9241775f

View File

@ -776,6 +776,8 @@ private static IEnumerable<int> getValidMoves(PKM pkm, GameVersion Version, bool
List<int> r = new List<int> { 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;