Allow bw movepool except for kyurem

workaround provided for kyurem movepool (which is same bw-b2w2) but the
AddMoves logic with form != 0 points to the form == 0 data
Closes #2085
This commit is contained in:
Kurt 2018-08-03 07:46:53 -07:00
parent 30a614484e
commit 0f63b0a0ee

View file

@ -392,7 +392,8 @@ namespace PKHeX.Core
switch (ver)
{
case Any:
// LearnBW.AddMoves(moves, species, form, max); // same as BW
if (species != 646) // Kyurem moves are same for both versions, but forme movepool not present.
LearnBW.AddMoves(moves, species, form, max);
return LearnB2W2.AddMoves(moves, species, form, max);
case B: case W: case BW: