From 2b4e2a8fa1024e5c5bbac81485727fa95bf9ff0b Mon Sep 17 00:00:00 2001 From: Kurt Date: Wed, 5 Aug 2020 10:57:07 -0700 Subject: [PATCH] Update Core.cs --- PKHeX.Core/Legality/Core.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PKHeX.Core/Legality/Core.cs b/PKHeX.Core/Legality/Core.cs index dbc4a1138..be2dfc679 100644 --- a/PKHeX.Core/Legality/Core.cs +++ b/PKHeX.Core/Legality/Core.cs @@ -261,7 +261,7 @@ internal static bool IsEvolutionValidWithMove(PKM pkm, LegalInfo info) LearnLevel = Math.Min(LearnLevel, info.EncounterMatch.LevelMin); // If the encounter is a player hatched egg check if the move could be an egg move or inherited level up move - if (info.EncounterMatch is EncounterEgg) + if (info.EncounterMatch is EncounterEgg && allowegg) { if (IsMoveInherited(pkm, info, moves)) LearnLevel = Math.Min(LearnLevel, gen <= 3 ? 6 : 2);