mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
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:
parent
2a6c33b68b
commit
9c32b36709
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue