Remove heavy ball early return

Continue onward to the appropriate checks.
Closes #939
This commit is contained in:
Kurt 2017-03-14 21:13:39 -07:00
parent b98954e20b
commit e33b5323d3

View file

@ -1037,11 +1037,10 @@ namespace PKHeX.Core
{
var lineage = Legal.getLineage(pkm);
if (lineage.Any(e => Legal.AlolanCaptureNoHeavyBall.Contains(e)))
{
AddLine(Severity.Invalid, "Heavy ball not possible for light, low-catch rate species in Gen VII.", CheckIdentifier.Ball);
else
AddLine(Severity.Valid, "Apricorn Ball possible for species.", CheckIdentifier.Ball);
return;
return;
}
}
if (EncounterType == typeof(EncounterStatic))