Minor text change

Add periods and use Change instead of Set
This commit is contained in:
Kurt 2016-11-27 00:02:58 -08:00
parent 8f73c9b0ac
commit 8a434be443
2 changed files with 4 additions and 4 deletions

View File

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

View File

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