Add mousecam cmd

This commit is contained in:
Vortrex
2020-12-29 00:19:57 -06:00
parent e8345d4f3e
commit d550e5aa1a

View File

@@ -29,7 +29,14 @@ function getPositionCommand(command, params, client) {
// ---------------------------------------------------------------------------
function toggleMouseCursorCommand(command, params, client) {
triggerNetworkEvent("ag.cursortoggle", client);
triggerNetworkEvent("ag.cursorToggle", client);
return true;
}
// ---------------------------------------------------------------------------
function toggleMouseCameraCommand(command, params, client) {
triggerNetworkEvent("ag.mouseCamera", client);
return true;
}