From 7525ac2b211d64777e02eb3d8bc5b87c11d2791e Mon Sep 17 00:00:00 2001 From: javierhimura Date: Tue, 28 Feb 2017 03:08:23 +0100 Subject: [PATCH] Fix getTutorMoves from gen7 --- PKHeX/Legality/Core.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PKHeX/Legality/Core.cs b/PKHeX/Legality/Core.cs index 448118cd4..50f0c9177 100644 --- a/PKHeX/Legality/Core.cs +++ b/PKHeX/Legality/Core.cs @@ -1588,7 +1588,7 @@ private static IEnumerable 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;