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