Fix silvally form change check

Closes #917
This commit is contained in:
Kurt 2017-03-02 18:28:43 -08:00
parent 80013b0367
commit ba40f74bf1

View file

@ -801,6 +801,8 @@ namespace PKHeX.Core
return pkm.AltForm == 1;
if (pkm.Species == 678 && pkm.Gender == 1)
return pkm.AltForm == 1;
if (pkm.Species == 773)
return true;
return false;
}
internal static bool getHasTradeEvolved(PKM pkm)