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