diff --git a/Misc/PK6.cs b/Misc/PK6.cs index 5776f7584..c3cdd296c 100644 --- a/Misc/PK6.cs +++ b/Misc/PK6.cs @@ -745,8 +745,9 @@ public void TradeFriendshipAffection(string SAV_TRAINER) // Legality Properties public bool WasLink => Met_Location == 30011; - public bool WasEgg => Legal.EggLocations.Contains(Egg_Location) && Met_Level == 1; + public bool WasEgg => Legal.EggLocations.Contains(Egg_Location); public bool WasEvent => FatefulEncounter && Met_Location > 40000; public bool WasEventEgg => FatefulEncounter && (Egg_Location > 40000 || Egg_Location == 30002) && Met_Level == 1; + public bool WasTradedEgg => Egg_Location == 30002; } }