mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-06 05:27:14 -05:00
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:
parent
6f19f7dfac
commit
cbfbad2f54
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user