Disallow crystal tutors if VC

This commit is contained in:
Kurt 2017-10-21 19:01:23 -07:00
parent 791a41b1a7
commit 528593b59e

View file

@ -2149,6 +2149,8 @@ namespace PKHeX.Core
moves.Add(57); moves.Add(57);
break; break;
case 2: case 2:
if (!AllowGen2Crystal(pkm))
break;
info = PersonalTable.C[species]; info = PersonalTable.C[species];
moves.AddRange(Tutors_GSC.Where((t, i) => info.TMHM[57 + i])); moves.AddRange(Tutors_GSC.Where((t, i) => info.TMHM[57 + i]));
goto case 1; goto case 1;