mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-06-03 01:24:11 -05:00
Fixed Zygarde Legalities from Gen 6 origin (#1353)
* Fixed Zygarde Legalities from Gen 6 origin * Same functionality, Lesser Lines
This commit is contained in:
parent
30f7345218
commit
9a9553f8c0
|
|
@ -2085,8 +2085,10 @@ internal static bool IsFormChangeable(PKM pkm, int species)
|
|||
return true;
|
||||
if (IsEvolvedFormChange(pkm))
|
||||
return true;
|
||||
if (pkm.Species == 718 && pkm.InhabitedGeneration(7) && pkm.AltForm == 3)
|
||||
if (pkm.Species == 718 && pkm.InhabitedGeneration(7) && pkm.AltForm != 1)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user