diff --git a/PKHeX.Core.AutoMod/AutoMod/APILegality.cs b/PKHeX.Core.AutoMod/AutoMod/APILegality.cs index 9a2bf704..f0424531 100644 --- a/PKHeX.Core.AutoMod/AutoMod/APILegality.cs +++ b/PKHeX.Core.AutoMod/AutoMod/APILegality.cs @@ -1035,6 +1035,17 @@ List tb break; } + if (!pk.IVs.SequenceEqual(set.IVs)) + { + tb.Add( + new() + { + Identifier = PID_IV, + Comment = $"Fallback IVs being used instead of Specified IVs" + } + ); + } + // Handle mismatching abilities due to a PID re-roll // Check against ability index because the pokemon could be a pre-evo at this point if (pk.Ability != set.Ability)