Update PK9.cs

This commit is contained in:
Kurt 2024-11-09 22:34:33 -06:00
parent d77d6b7ce6
commit 51464fb4af

View file

@ -628,10 +628,13 @@ public sealed class PK9 : PKM, ISanityChecksum, ITeraType, ITechRecord, IObedien
{ {
// HT_Language is set for eggs // HT_Language is set for eggs
this.ClearMemoriesOT(); this.ClearMemoriesOT();
this.ClearMemoriesHT(); if (IsUntraded)
HandlingTrainerGender = 0; {
HandlingTrainerFriendship = 0; this.ClearMemoriesHT();
HandlingTrainerTrash.Clear(); HandlingTrainerGender = 0;
HandlingTrainerFriendship = 0;
HandlingTrainerTrash.Clear();
}
return; return;
} }