Fix getTutorMoves from gen7

This commit is contained in:
javierhimura
2017-02-28 03:08:23 +01:00
parent bccfc7ee13
commit 7525ac2b21

View File

@@ -1588,7 +1588,7 @@ private static IEnumerable<int> getTutorMoves(PKM pkm, int species, int form, bo
break;
case 7:
// Type Tutors -- Pledge moves and High BP moves switched places in G7+
moves.AddRange(TypeTutor6.Where((t, i) => info.TypeTutors[i]));
moves.AddRange(TypeTutor7.Where((t, i) => info.TypeTutors[i]));
// No special tutors in G7
break;