mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 00:37:11 +00:00
Copy addmoves special case to individual fetch
see prior commits
This commit is contained in:
parent
0f63b0a0ee
commit
53857df647
1 changed files with 1 additions and 1 deletions
|
@ -150,7 +150,7 @@ namespace PKHeX.Core
|
|||
{
|
||||
case Any:
|
||||
var first = LearnBW.GetIsLevelUp(species, form, move, lvl);
|
||||
if (first.IsLevelUp)
|
||||
if (first.IsLevelUp && species != 646) // Kyurem moves are same for both versions, but forme movepool not present.
|
||||
return first;
|
||||
return LearnB2W2.GetIsLevelUp(species, form, move, lvl);
|
||||
case B: case W: case BW:
|
||||
|
|
Loading…
Reference in a new issue