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
This commit is contained in:
Kurt 2017-12-02 18:54:41 -08:00
parent 2a6c33b68b
commit 9c32b36709

View file

@ -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;
}
}