mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 12:33:06 +00:00
Skip eggs for EncounterTrade check
yay reusing Link Trade egg met locations wrong, ty ilca
This commit is contained in:
parent
483547f631
commit
95454246b8
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ namespace PKHeX.Core
|
|||
EncounterMatchRating rating = None;
|
||||
|
||||
// Trades
|
||||
if (pkm.Met_Location == Locations.LinkTrade6NPC)
|
||||
if (!pkm.IsEgg && pkm.Met_Location == Locations.LinkTrade6NPC)
|
||||
{
|
||||
foreach (var z in GetValidEncounterTrades(pkm, chain))
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue