mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-16 00:58:01 +00:00
Merge pull request #114 from Eskuero/patch-1
Don't check base moves if the pkm can't be hatched
This commit is contained in:
commit
e65224e5f5
1 changed files with 1 additions and 1 deletions
|
@ -935,7 +935,7 @@ namespace PKHeX
|
||||||
goto noRelearn; // No WC match
|
goto noRelearn; // No WC match
|
||||||
}
|
}
|
||||||
|
|
||||||
if (pk6.WasEgg)
|
if (pk6.WasEgg && !Legal.NoHatchFromEgg.Contains(pk6.Species))
|
||||||
{
|
{
|
||||||
const int games = 2;
|
const int games = 2;
|
||||||
bool checkAllGames = pk6.WasTradedEgg;
|
bool checkAllGames = pk6.WasTradedEgg;
|
||||||
|
|
Loading…
Reference in a new issue