mirror of
https://github.com/kwsch/PKHeX
synced 2025-02-18 14:28:33 +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++)
|
for (int m = 0; m < 4; m++)
|
||||||
{
|
{
|
||||||
if (m == move)
|
if (m != move)
|
||||||
continue;
|
continue;
|
||||||
if (res[m].Source != MoveSource.LevelUp)
|
if (res[m].Source != MoveSource.LevelUp)
|
||||||
continue;
|
continue;
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Loading…
Add table
Reference in a new issue