From e15e198435e63d1470863775a0e7b3e28af63d80 Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Thu, 30 Dec 2021 12:12:47 -0600 Subject: [PATCH] Remove obsolete stuff from utils --- scripts/server/native/connected.js | 28 ---------------------------- 1 file changed, 28 deletions(-) diff --git a/scripts/server/native/connected.js b/scripts/server/native/connected.js index d3ffc247..7dd3118c 100644 --- a/scripts/server/native/connected.js +++ b/scripts/server/native/connected.js @@ -556,34 +556,6 @@ function isValidVehicleModel(model) { } return false; - - /* - if(getGame() == VRR_GAME_GTA_III) { - if(modelId < 90 || modelId > 150) { - return false; - } - - return true; - } - - if(getGame() == VRR_GAME_GTA_VC) { - if(modelId < 130 || modelId > 236) { - return false; - } - - return true; - } - - if(getGame() == VRR_GAME_GTA_SA) { - return true; - } - - if(getGame() == VRR_GAME_GTA_IV) { - return true; - } - - return false; - */ } // ===========================================================================