mirror of
https://github.com/kwsch/PKHeX
synced 2025-02-24 19:37:08 +00:00
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:
parent
30a614484e
commit
0f63b0a0ee
1 changed files with 2 additions and 1 deletions
|
@ -392,7 +392,8 @@ namespace PKHeX.Core
|
||||||
switch (ver)
|
switch (ver)
|
||||||
{
|
{
|
||||||
case Any:
|
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);
|
return LearnB2W2.AddMoves(moves, species, form, max);
|
||||||
|
|
||||||
case B: case W: case BW:
|
case B: case W: case BW:
|
||||||
|
|
Loading…
Add table
Reference in a new issue