mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-08-28 02:25:06 -05:00
Fix level check compare
This commit is contained in:
@@ -43,7 +43,7 @@ public bool IsSlotCompatibile(EncounterSlot slot, PKM pkm)
|
||||
}
|
||||
else
|
||||
{
|
||||
if (lvl < pkm.Met_Level)
|
||||
if (lvl > pkm.Met_Level)
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user