Use full sentence rather than combining words
This commit is contained in:
parent
23c44793e9
commit
95d6baaf6c
4 changed files with 72 additions and 58 deletions
|
|
@ -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))
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue