mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-06-02 23:34:13 -05:00
Merge pull request #600 from Nalweakette/patch-1
Invalid Check for Apricorn ball
This commit is contained in:
commit
ca28d09806
|
|
@ -959,7 +959,7 @@ private void verifyEggBallGen7()
|
|||
}
|
||||
if (0x10 < pkm.Ball && pkm.Ball < 0x18) // Apricorn Ball
|
||||
{
|
||||
if ((pkm.Species > 731 && pkm.Species <= 785)
|
||||
if ((pkm.Species >= 731 && pkm.Species <= 785)
|
||||
|| Lineage.Any(e => Legal.PastGenAlolanNatives.Contains(e))
|
||||
|| Lineage.Any(e => Legal.PastGenAlolanScans.Contains(e))
|
||||
|| Lineage.Any(e => Legal.Inherit_Apricorn.Contains(e))) // past gen
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user