From ec2816379e8bb3c006819c8a353f2751a79e8b86 Mon Sep 17 00:00:00 2001 From: Kurt Date: Sun, 27 May 2018 07:01:46 -0700 Subject: [PATCH] Restore unk mystery gift message no match & fateful -> 'hey maybe pkhex doesn't know about this one yet' --- PKHeX.Core/Legality/Analysis.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PKHeX.Core/Legality/Analysis.cs b/PKHeX.Core/Legality/Analysis.cs index df486ee5f..bd22c4c66 100644 --- a/PKHeX.Core/Legality/Analysis.cs +++ b/PKHeX.Core/Legality/Analysis.cs @@ -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