Disable mousecam on VC for now (crashes with 2+ players)

This commit is contained in:
Vortrex
2022-03-21 23:21:09 -05:00
parent 8a32b16979
commit cb348d83d0

View File

@@ -35,7 +35,9 @@ function toggleMouseCursorCommand(command, params, client) {
// ===========================================================================
function toggleMouseCameraCommand(command, params, client) {
sendPlayerMouseCameraToggle(client);
if(getGame() != VRR_GAME_GTA_VC) {
sendPlayerMouseCameraToggle(client);
}
return true;
}