Remove unnecessary reference, Core is within Legal
This commit is contained in:
Kaphotics 2016-05-29 14:44:08 -07:00
parent 26bda05936
commit 20f3a10838

View file

@ -376,7 +376,7 @@ namespace PKHeX
}
internal static bool getCanKnowMove(PK6 pk6, int move, int version = -1)
{
if (pk6.Species == 235 && !Legal.InvalidSketch.Contains(move))
if (pk6.Species == 235 && !InvalidSketch.Contains(move))
return true;
return getValidMoves(pk6, Version: version, LVL: true, Relearn: true, Tutor: true, Machine: true).Contains(move);
}