Merge pull request #1677 from sora10pls/master

Fix level check compare
This commit is contained in:
Kurt
2017-12-01 12:49:23 -08:00
committed by GitHub

View File

@@ -43,7 +43,7 @@ public bool IsSlotCompatibile(EncounterSlot slot, PKM pkm)
}
else
{
if (lvl < pkm.Met_Level)
if (lvl > pkm.Met_Level)
return false;
}