From ba30f330459f249336aa4c52ee8564f91d5a571c Mon Sep 17 00:00:00 2001 From: Kurt Date: Thu, 16 Apr 2020 09:30:20 -0700 Subject: [PATCH] Update EncounterStatic.cs Closes #2810 --- .../Legality/Encounters/EncounterStatic/EncounterStatic.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PKHeX.Core/Legality/Encounters/EncounterStatic/EncounterStatic.cs b/PKHeX.Core/Legality/Encounters/EncounterStatic/EncounterStatic.cs index d1dddb2d3..843edcb71 100644 --- a/PKHeX.Core/Legality/Encounters/EncounterStatic/EncounterStatic.cs +++ b/PKHeX.Core/Legality/Encounters/EncounterStatic/EncounterStatic.cs @@ -367,7 +367,7 @@ private bool IsMatchEggLocation(PKM pkm, ref int lvl) } else { - if (pkm.Egg_Location != Locations.LinkTrade6) // Link Trade + if (!EggEncounter || pkm.Egg_Location != Locations.LinkTrade6) // Link Trade return false; } }