Remove unused command from server/commands.lua

Removed command that calls `TriggerClientEvent("koil-debug:toggle", source)`
This commit is contained in:
Beckam White
2021-08-08 02:27:15 +10:00
committed by GitHub
parent 31ce00fe26
commit a2161da889
-4
View File
@@ -73,10 +73,6 @@ QBCore.Commands.Add("car", "Spawn Vehicle (Admin Only)", {{name="model", help="M
TriggerClientEvent('QBCore:Command:SpawnVehicle', source, args[1])
end, "admin")
QBCore.Commands.Add("debug", "Toggle Debug Mode (Admin Only)", {}, false, function(source, args)
TriggerClientEvent('koil-debug:toggle', source)
end, "admin")
QBCore.Commands.Add("dv", "Delete Vehicle (Admin Only)", {}, false, function(source, args)
TriggerClientEvent('QBCore:Command:DeleteVehicle', source)
end, "admin")