From ea90c9095fd169c5c3eefbcd58284449d3433448 Mon Sep 17 00:00:00 2001 From: Kurt Date: Fri, 17 Sep 2021 18:15:19 -0700 Subject: [PATCH] Fix early return bool oops Probably should be doing this in a branch before pushing :) --- .../Legality/Encounters/EncounterSlot/GO/EncounterSlotGO.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); }