From 9c32b36709e39bb4d83cac7509ccbeb855e7d38a Mon Sep 17 00:00:00 2001 From: Kurt Date: Sat, 2 Dec 2017 18:54:41 -0800 Subject: [PATCH] Don't reuse friend safari message use the string format variant that has less hints. https://projectpokemon.org/home/forums/topic/42869-bugg7-ditto/?tab=comments#comment-224365 --- PKHeX.Core/Legality/Checks.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PKHeX.Core/Legality/Checks.cs b/PKHeX.Core/Legality/Checks.cs index e9c167066..4881e888e 100644 --- a/PKHeX.Core/Legality/Checks.cs +++ b/PKHeX.Core/Legality/Checks.cs @@ -556,7 +556,7 @@ namespace PKHeX.Core bool force2 = w.Type == SlotType.FriendSafari || pkm.Gen7 && pkm.AbilityNumber == 4; if (force2 && pkm.IVs.Count(iv => iv == 31) < 2) { - AddLine(Severity.Invalid, V29, CheckIdentifier.IVs); + AddLine(Severity.Invalid, w.Type == SlotType.FriendSafari ? V29 : string.Format(V28, 2), CheckIdentifier.IVs); return; } }