mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-27 06:20:25 +00: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
3 changed files with 1 additions and 1 deletions
|
@ -579,7 +579,7 @@ namespace PKHeX.Core
|
|||
|
||||
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 a new issue