mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-27 14:30:56 +00:00
Add more succinct go park IV check string
This commit is contained in:
parent
43a9d4eb99
commit
93ff395875
2 changed files with 2 additions and 2 deletions
|
@ -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.";
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue