mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-28 06:50:23 +00:00
Move reminder relocated to correct method
Shouldn't apply for past gen games, only in g7's case.
This commit is contained in:
parent
c38f3cb216
commit
ad8b61abe5
1 changed files with 1 additions and 2 deletions
|
@ -791,8 +791,6 @@ namespace PKHeX
|
||||||
List<int> r = new List<int> { 0 };
|
List<int> r = new List<int> { 0 };
|
||||||
int species = pkm.Species;
|
int species = pkm.Species;
|
||||||
int lvl = pkm.CurrentLevel;
|
int lvl = pkm.CurrentLevel;
|
||||||
if (pkm.Format >= 7)
|
|
||||||
lvl = 100; // Move reminder can teach any level in movepool now!
|
|
||||||
|
|
||||||
// Special Type Tutors Availability
|
// Special Type Tutors Availability
|
||||||
const bool moveTutor = true;
|
const bool moveTutor = true;
|
||||||
|
@ -876,6 +874,7 @@ namespace PKHeX
|
||||||
{
|
{
|
||||||
int index = PersonalTable.SM.getFormeIndex(species, form);
|
int index = PersonalTable.SM.getFormeIndex(species, form);
|
||||||
PersonalInfo pi = PersonalTable.SM.getFormeEntry(species, form);
|
PersonalInfo pi = PersonalTable.SM.getFormeEntry(species, form);
|
||||||
|
lvl = 100; // Move reminder can teach any level in movepool now!
|
||||||
|
|
||||||
if (LVL) r.AddRange(LevelUpSM[index].getMoves(lvl));
|
if (LVL) r.AddRange(LevelUpSM[index].getMoves(lvl));
|
||||||
if (moveTutor) r.AddRange(getTutorMoves(pkm, species, form, specialTutors));
|
if (moveTutor) r.AddRange(getTutorMoves(pkm, species, form, specialTutors));
|
||||||
|
|
Loading…
Reference in a new issue