Use full sentence rather than combining words

This commit is contained in:
SGKoishi 2022-10-25 08:49:39 -07:00
parent 23c44793e9
commit 95d6baaf6c
No known key found for this signature in database
GPG key ID: 8FFC399070653828
4 changed files with 72 additions and 58 deletions

View file

@ -151,12 +151,12 @@ namespace TShockAPI
if (output.Count == 0)
{
player.SendInfoMessage(includeUnprotected
? "There are no regions at this point."
: "There are no regions at this point, or they are not protected.");
? GetString("There are no regions at this point.")
: GetString("There are no regions at this point, or they are not protected."));
}
else
{
player.SendInfoMessage(includeUnprotected ? "Regions at this point: " : "Protected regions at this point: ");
player.SendInfoMessage(includeUnprotected ? GetString("Regions at this point: ") : GetString("Protected regions at this point: "));
foreach (string line in PaginationTools.BuildLinesFromTerms(output))
{