Restore unk mystery gift message

no match & fateful -> 'hey maybe pkhex doesn't know about this one yet'
This commit is contained in:
Kurt 2018-05-27 07:01:46 -07:00
parent 98895bd365
commit ec2816379e

View File

@ -90,7 +90,7 @@ public LegalityAnalysis(PKM pk, PersonalTable table = null)
&& Info.Moves.All(m => m.Valid)
&& Info.Relearn.All(m => m.Valid);
if (pkm.FatefulEncounter && Info.Relearn.Any(chk => !chk.Valid) && EncounterMatch == null)
if (pkm.FatefulEncounter && Info.Relearn.Any(chk => !chk.Valid) && EncounterMatch is EncounterInvalid)
AddLine(Severity.Indeterminate, V188, CheckIdentifier.Fateful);
}
#if SUPPRESS