Fixed Zygarde Legalities from Gen 6 origin (#1353)

* Fixed Zygarde Legalities from Gen 6 origin

* Same functionality, Lesser Lines
This commit is contained in:
architdate 2017-07-21 23:28:25 +08:00 committed by Kurt
parent 30f7345218
commit 9a9553f8c0

View File

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