From 0f4ce5a7fc8e7f55f0bb7aa0fe007b9b503b3298 Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Fri, 7 Oct 2022 16:05:16 -0500 Subject: [PATCH] Use locale string --- scripts/server/job.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/server/job.js b/scripts/server/job.js index 28984962..01c275ec 100644 --- a/scripts/server/job.js +++ b/scripts/server/job.js @@ -2367,7 +2367,7 @@ function jobStartRouteCommand(command, params, client) { function jobStopRouteCommand(command, params, client) { if (!canPlayerUseJobs(client)) { - messagePlayerError(client, "You are not allowed to use jobs."); + messagePlayerError(client, getLocaleString(client, "NotAllowedToUseJobs")); return false; }