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; }