Add more succinct go park IV check string

This commit is contained in:
Kurt 2018-11-15 17:35:11 -08:00
parent 43a9d4eb99
commit 93ff395875
2 changed files with 2 additions and 2 deletions

View file

@ -257,6 +257,7 @@ namespace PKHeX.Core
public static string LItemUnreleased { get; set; } = "Held item is unreleased.";
public static string LIVAllEqual { get; set; } = "All IVs are equal.";
public static string LIVNotCorrect { get; set; } = "IVs do not match encounter requirements.";
public static string LIVF_COUNT0_31 { get; set; } = "Should have at least {0} IVs = 31.";
public static string LLevelEXPThreshold { get; set; } = "Current experience matches level threshold.";

View file

@ -88,7 +88,6 @@ namespace PKHeX.Core
private void VerifyIVsGen7(LegalityAnalysis data)
{
var pkm = data.pkm;
if (pkm.GG)
{
@ -125,7 +124,7 @@ namespace PKHeX.Core
private void VerifyIVsGoTransfer(LegalityAnalysis data)
{
if (!IsGoIVSetValid(data.pkm))
data.AddLine(GetInvalid(LEncGiftIVMismatch));
data.AddLine(GetInvalid(LIVNotCorrect));
}
private static bool IsGoIVSetValid(PKM pkm)