From 14bba23b3eb5eb05e1bce493af901f5739e9f9cb Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Sun, 13 Feb 2022 19:33:03 -0600 Subject: [PATCH] Don't set mouse cam state for anims --- scripts/server/animation.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/server/animation.js b/scripts/server/animation.js index 271fcb3e..ff253583 100644 --- a/scripts/server/animation.js +++ b/scripts/server/animation.js @@ -108,11 +108,11 @@ function makePlayerPlayAnimation(client, animationSlot, offsetPosition = 1) { makePedPlayAnimation(getPlayerData(client).ped, animationSlot, offsetPosition); - if(getAnimationData(animationSlot)[9] != VRR_ANIMMOVE_NONE) { - if(getGame() < VRR_GAME_GTA_SA) { - setPlayerMouseCameraState(client, true); - } - } + //if(getAnimationData(animationSlot)[9] != VRR_ANIMMOVE_NONE) { + // if(getGame() < VRR_GAME_GTA_SA) { + // setPlayerMouseCameraState(client, true); + // } + //} } // ===========================================================================