Fix Zygarde 10%-C legality check (#934)

Zygarde with Gen 6 origin can only be 50% or 50%-C, cannot make 10% or 10%-C without disassembling -- thus giving it Gen 7 origin.
This commit is contained in:
sora10pls 2017-03-10 17:45:09 -05:00 committed by Kaphotics
parent 6f19f7dfac
commit cbfbad2f54

View File

@ -863,7 +863,7 @@ internal static bool getCanFormChange(PKM pkm, int species)
return true;
if (getHasEvolvedFormChange(pkm))
return true;
if (pkm.Species == 718 && pkm.InhabitedGeneration(7) && pkm.AltForm > 1)
if (pkm.Species == 718 && pkm.InhabitedGeneration(7) && pkm.AltForm == 3)
return true;
return false;
}