Fix early return bool

oops
Probably should be doing this in a branch before pushing :)
This commit is contained in:
Kurt 2021-09-17 18:15:19 -07:00
parent 425f0067c3
commit ea90c9095f

View file

@ -100,7 +100,7 @@ namespace PKHeX.Core
{ {
int min = Type.GetMinIV(); int min = Type.GetMinIV();
if (min == 0) if (min == 0)
return false; return true;
return GetIVsAboveMinimum(pkm, min); return GetIVsAboveMinimum(pkm, min);
} }
@ -108,7 +108,7 @@ namespace PKHeX.Core
{ {
int max = Type.GetMaxIV(); int max = Type.GetMaxIV();
if (max == 15) if (max == 15)
return false; return true;
return GetIVsBelowMaximum(pkm, max); return GetIVsBelowMaximum(pkm, max);
} }