mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-11 06:05:04 -05:00
Fix ninjask evo move comparison
https://projectpokemon.org/home/forums/topic/44413-bug-information-about-bug-found-on-the-new-version-180319/
This commit is contained in:
parent
b0dcdf0948
commit
2c4e3358e4
|
|
@ -579,7 +579,7 @@ private static void ParseShedinjaEvolveMoves(PKM pkm, IList<CheckMoveResult> res
|
|||
|
||||
for (int m = 0; m < 4; m++)
|
||||
{
|
||||
if (m == move)
|
||||
if (m != move)
|
||||
continue;
|
||||
if (res[m].Source != MoveSource.LevelUp)
|
||||
continue;
|
||||
|
|
|
|||
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue
Block a user