From a030bcaac7129265bb1317c310133bdc343618e4 Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Sun, 27 Dec 2020 22:32:26 -0600 Subject: [PATCH] Add unlock cmd as alias to lock --- scripts/server/command.js | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/server/command.js b/scripts/server/command.js index 5e8cdf75..adb3950c 100644 --- a/scripts/server/command.js +++ b/scripts/server/command.js @@ -232,6 +232,7 @@ function loadCommandData() { commandData("delveh", deleteVehicleCommand, "", getStaffFlagValue("manageVehicles"), true, false), commandData("lock", vehicleLockCommand, "", getStaffFlagValue("none"), true, false), + commandData("unlock", vehicleLockCommand, "", getStaffFlagValue("none"), true, false), commandData("engine", vehicleEngineCommand, "", getStaffFlagValue("none"), true, false), commandData("siren", vehicleSirenCommand, "", getStaffFlagValue("none"), true, false), commandData("lights", vehicleLightsCommand, "", getStaffFlagValue("none"), true, false),