diff --git a/PKHeX.Core/Legality/Encounters/EncounterSlot/GO/EncounterSlotGO.cs b/PKHeX.Core/Legality/Encounters/EncounterSlot/GO/EncounterSlotGO.cs index 5ba7c8e6a..bf0bfca9f 100644 --- a/PKHeX.Core/Legality/Encounters/EncounterSlot/GO/EncounterSlotGO.cs +++ b/PKHeX.Core/Legality/Encounters/EncounterSlot/GO/EncounterSlotGO.cs @@ -100,7 +100,7 @@ public bool GetIVsAboveMinimum(PKM pkm) { int min = Type.GetMinIV(); if (min == 0) - return false; + return true; return GetIVsAboveMinimum(pkm, min); } @@ -108,7 +108,7 @@ public bool GetIVsBelowMaximum(PKM pkm) { int max = Type.GetMaxIV(); if (max == 15) - return false; + return true; return GetIVsBelowMaximum(pkm, max); }