diff --git a/scripts/client/utilities.js b/scripts/client/utilities.js index 478530ee..62dd0f53 100644 --- a/scripts/client/utilities.js +++ b/scripts/client/utilities.js @@ -188,8 +188,10 @@ function setLocalPlayerControlState(controlState, cursorState = false) { game.SET_PLAYER_CONTROL(localClient.index, boolToInt(controlState)); } - localPlayer.collisionsEnabled = controlState; - localPlayer.invincible = true; + if(getGame() != VRR_GAME_GTA_IV) { + localPlayer.collisionsEnabled = controlState; + localPlayer.invincible = true; + } } // ===========================================================================