mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 12:33:06 +00:00
Heal x->pk8 converts
This commit is contained in:
parent
e51df9855d
commit
a83556d612
2 changed files with 5 additions and 3 deletions
|
@ -666,7 +666,9 @@ namespace PKHeX.Core
|
|||
WeightScalar = WeightScalar,
|
||||
};
|
||||
|
||||
pk8.HealPP();
|
||||
// Fix PP and Stats
|
||||
pk8.Heal();
|
||||
|
||||
// Fix Checksum
|
||||
pk8.RefreshChecksum();
|
||||
|
||||
|
|
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue