diff --git a/PKHeX/Legality/Checks.cs b/PKHeX/Legality/Checks.cs index e0a3a208f..b072c4d68 100644 --- a/PKHeX/Legality/Checks.cs +++ b/PKHeX/Legality/Checks.cs @@ -627,7 +627,7 @@ private CheckResult verifyEncounterEgg4() if (pkm.Met_Location != 30001) return new CheckResult(Severity.Invalid, V61, CheckIdentifier.Encounter); - return new CheckResult(Severity.Valid, V63, CheckIdentifier.Encounter); + return new CheckResult(Severity.Valid, V53, CheckIdentifier.Encounter); } private CheckResult verifyEncounterEgg5() { diff --git a/PKHeX/PKM/PKM.cs b/PKHeX/PKM/PKM.cs index bbf536d36..d27855c23 100644 --- a/PKHeX/PKM/PKM.cs +++ b/PKHeX/PKM/PKM.cs @@ -443,7 +443,7 @@ public virtual bool WasEgg { switch (GenNumber) { - case 4: return Legal.EggLocations4.Contains(Egg_Location) || (Species == 490 && Egg_Location == 3001) || (Egg_Location == 3002 && HGSS); // faraway + case 4: return Legal.EggLocations4.Contains(Egg_Location) || (Species == 490 && Egg_Location == 3001) || (Egg_Location == 3002 && PtHGSS); // faraway case 5: return Legal.EggLocations5.Contains(Egg_Location); case 6: case 7: return Legal.EggLocations.Contains(Egg_Location);