From c91c32ddd23b9a7bc070eab938167a47a7f90040 Mon Sep 17 00:00:00 2001 From: Ricky Merc Date: Fri, 22 Sep 2023 00:00:41 -0400 Subject: [PATCH] Update VehicleSpawner.cs --- vMenu/menus/VehicleSpawner.cs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/vMenu/menus/VehicleSpawner.cs b/vMenu/menus/VehicleSpawner.cs index 880416d9..10f3d893 100644 --- a/vMenu/menus/VehicleSpawner.cs +++ b/vMenu/menus/VehicleSpawner.cs @@ -92,10 +92,6 @@ private void CreateMenu() foreach (string model in vehiclesjson["vehicles"]) { // Get the vehicle make name using the "GetMakeNameFromVehicleModel()" function. - if (!DoesModelExist(model)) - { - return; - } string makeName = GetMakeNameFromVehicleModel((uint)GetHashKey(model)); // Check if the makeName is null or empty, and if so, put the model in the "Unknown" category. if (string.IsNullOrEmpty(makeName))