mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 08:47:14 +00:00
Remove heavy ball early return
Continue onward to the appropriate checks. Closes #939
This commit is contained in:
parent
b98954e20b
commit
e33b5323d3
1 changed files with 3 additions and 4 deletions
|
@ -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))
|
||||
|
|
Loading…
Reference in a new issue