mirror of
https://github.com/kwsch/PKHeX
synced 2025-02-17 13:58:33 +00:00
Fix level check compare
This commit is contained in:
parent
4b954cd102
commit
1fcac7c06b
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@
|
|||
}
|
||||
else
|
||||
{
|
||||
if (lvl < pkm.Met_Level)
|
||||
if (lvl > pkm.Met_Level)
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue