Heal x->pk8 converts

This commit is contained in:
Kurt 2020-03-02 16:32:23 -08:00
parent e51df9855d
commit a83556d612
2 changed files with 5 additions and 3 deletions

View file

@ -666,7 +666,9 @@ namespace PKHeX.Core
WeightScalar = WeightScalar,
};
pk8.HealPP();
// Fix PP and Stats
pk8.Heal();
// Fix Checksum
pk8.RefreshChecksum();

View file

@ -644,8 +644,8 @@ namespace PKHeX.Core
if (FormConverter.IsTotemForm(Species, AltForm, 7))
pk8.AltForm = FormConverter.GetTotemBaseForm(Species, AltForm);
// Fix PP
pk8.HealPP();
// Fix PP and Stats
pk8.Heal();
// Fix Checksum
pk8.RefreshChecksum();