mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-06-03 05:14:12 -05:00
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:
parent
70bd5bc990
commit
0d9241775f
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user