From b5c3b430fa31c1a6c96fd0d8a772adf9b07d4752 Mon Sep 17 00:00:00 2001 From: Chris <2648373+QuiCM@users.noreply.github.com> Date: Tue, 2 Jun 2020 10:20:13 +0930 Subject: [PATCH] Standardize permission rejection message again --- TShockAPI/GetDataHandlers.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TShockAPI/GetDataHandlers.cs b/TShockAPI/GetDataHandlers.cs index 60d16b35..65fe622f 100644 --- a/TShockAPI/GetDataHandlers.cs +++ b/TShockAPI/GetDataHandlers.cs @@ -3246,7 +3246,7 @@ namespace TShockAPI { if (!args.Player.HasPermission(Permissions.journey_timeset)) { - args.Player.SendErrorMessage("You don't have permission to modify the time of the server."); + args.Player.SendErrorMessage("You do not have permission to modify the time of the server."); return true; } break;