From 8837836c4a7e08a45d762485282be716726e931a Mon Sep 17 00:00:00 2001 From: VortrexFTW Date: Sun, 6 Sep 2020 00:16:15 -0500 Subject: [PATCH] Add lock, engine, siren cmds --- scripts/server/command.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/scripts/server/command.js b/scripts/server/command.js index cd66e875..51653437 100644 --- a/scripts/server/command.js +++ b/scripts/server/command.js @@ -115,7 +115,11 @@ function loadCommandData() { startup: [], translate: [], utilities: [], - vehicle: [], + vehicle: [ + commandData("lock", vehicleLockCommand, "", getStaffFlagValue("none"), true, true), + commandData("engine", vehicleEngineCommand, "", getStaffFlagValue("none"), true, true), + commandData("siren", vehicleSirenCommand, "", getStaffFlagValue("none"), true, true), + ], } return tempCommands; }