mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 04:23:12 +00:00
verifyEncounterEgg Fix for Manaphy egg from gen4
This commit is contained in:
parent
22e0b0f873
commit
8511c2a36d
1 changed files with 1 additions and 1 deletions
|
@ -494,7 +494,7 @@ namespace PKHeX.Core
|
|||
private CheckResult verifyEncounterEgg()
|
||||
{
|
||||
// Check Species
|
||||
if (Legal.NoHatchFromEgg.Contains(pkm.Species))
|
||||
if (Legal.NoHatchFromEgg.Contains(pkm.Species) && (pkm.GenNumber != 4 || pkm.Species == 490))
|
||||
return new CheckResult(Severity.Invalid, V50, CheckIdentifier.Encounter);
|
||||
|
||||
switch (pkm.GenNumber)
|
||||
|
|
Loading…
Reference in a new issue