diff --git a/scripts/client/utilities.js b/scripts/client/utilities.js index 260cc2ff..1c761b69 100644 --- a/scripts/client/utilities.js +++ b/scripts/client/utilities.js @@ -404,7 +404,11 @@ function clearLocalPedState() { // =========================================================================== function getWeaponSlot(weaponId) { - return weaponSlots[game.game][weaponId]; + if(getGame() == VRR_GAME_GTA_IV) { + return false; + } + + return weaponSlots[getGame()][weaponId]; } // ===========================================================================