From 1fcac7c06b580a42e7c240bbcbae1bd51509c7b1 Mon Sep 17 00:00:00 2001 From: Matt Date: Fri, 1 Dec 2017 15:13:03 -0500 Subject: [PATCH] Fix level check compare --- PKHeX.Core/Legality/RNG/Frame/Frame.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PKHeX.Core/Legality/RNG/Frame/Frame.cs b/PKHeX.Core/Legality/RNG/Frame/Frame.cs index 3f30529fe..37e82a288 100644 --- a/PKHeX.Core/Legality/RNG/Frame/Frame.cs +++ b/PKHeX.Core/Legality/RNG/Frame/Frame.cs @@ -43,7 +43,7 @@ public bool IsSlotCompatibile(EncounterSlot slot, PKM pkm) } else { - if (lvl < pkm.Met_Level) + if (lvl > pkm.Met_Level) return false; }