Standardize permission rejection messages

This commit is contained in:
Chris 2020-06-02 10:18:40 +09:30
parent c5fcece18d
commit d46f534533
3 changed files with 23 additions and 23 deletions

View file

@ -664,13 +664,13 @@ namespace TShockAPI
switch (failure)
{
case BuildPermissionFailPoint.GeneralBuild:
SendErrorMessage("You lack permission to build on this server.");
SendErrorMessage("You do not have permission to build on this server.");
break;
case BuildPermissionFailPoint.SpawnProtect:
SendErrorMessage("You lack permission to build in the spawn point.");
SendErrorMessage("You do not have permission to build in the spawn point.");
break;
case BuildPermissionFailPoint.Regions:
SendErrorMessage("You lack permission to build in this region.");
SendErrorMessage("You do not have permission to build in this region.");
break;
}