mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-08-27 23:25:25 -05:00
Minor text change
Add periods and use Change instead of Set
This commit is contained in:
@@ -1268,13 +1268,13 @@ private void verifyHTMemory()
|
||||
if (pkm.GenNumber == 7)
|
||||
{
|
||||
if (pkm.HT_Memory != 0)
|
||||
AddLine(Severity.Invalid, "Should not have a HT Memory", CheckIdentifier.Memory);
|
||||
AddLine(Severity.Invalid, "Should not have a HT Memory.", CheckIdentifier.Memory);
|
||||
if (pkm.HT_Intensity != 0)
|
||||
AddLine(Severity.Invalid, "Should not have a HT Memory Intensity value", CheckIdentifier.Memory);
|
||||
AddLine(Severity.Invalid, "Should not have a HT Memory Intensity value.", CheckIdentifier.Memory);
|
||||
if (pkm.HT_TextVar != 0)
|
||||
AddLine(Severity.Invalid, "Should not have a HT Memory TextVar value.", CheckIdentifier.Memory);
|
||||
if (pkm.HT_Feeling != 0)
|
||||
AddLine(Severity.Invalid, "Should not have a HT Memory Feeling value", CheckIdentifier.Memory);
|
||||
AddLine(Severity.Invalid, "Should not have a HT Memory Feeling value.", CheckIdentifier.Memory);
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
@@ -1861,7 +1861,7 @@ private void clickMetLocation(object sender, EventArgs e)
|
||||
|
||||
var met_list = GameInfo.getLocationList((GameVersion)pkm.Version, SAV.Generation, egg: false);
|
||||
var locstr = met_list.FirstOrDefault(loc => loc.Value == location)?.Text;
|
||||
string suggestion = $"Set Met Location to {locstr} @ level {level}?";
|
||||
string suggestion = $"Change Met Location to {locstr} @ level {level}?";
|
||||
|
||||
if (Util.Prompt(MessageBoxButtons.YesNo, suggestion) != DialogResult.Yes)
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user