Fix level check compare

This commit is contained in:
Matt
2017-12-01 15:13:03 -05:00
committed by GitHub
parent 4b954cd102
commit 1fcac7c06b

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;
}