mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-09 04:24:36 -05:00
Fix level check compare
This commit is contained in:
parent
4b954cd102
commit
1fcac7c06b
|
|
@ -43,7 +43,7 @@ public bool IsSlotCompatibile(EncounterSlot slot, PKM pkm)
|
|||
}
|
||||
else
|
||||
{
|
||||
if (lvl < pkm.Met_Level)
|
||||
if (lvl > pkm.Met_Level)
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user