Clear typicalCargo for some vehicles missing it

Prevents preloading units, may help with load times a little.
This commit is contained in:
ebaydayz
2016-11-17 15:39:58 -05:00
parent e398250489
commit 8429ad1fbc
49 changed files with 407 additions and 128 deletions

View File

@@ -11,8 +11,8 @@ class HMMWV_Base: Car
mapSize = 5;
displayName = "HMMWV";
vehicleClass = "Car";
crew = "USMC_Soldier";
typicalCargo[] = {"USMC_Soldier","USMC_Soldier","USMC_Soldier_AT","USMC_Soldier_Officer"};
crew = "";
typicalCargo[] = {};
damperSize = 0.2;
damperForce = 1;
damperDamping = 1;
@@ -321,6 +321,8 @@ class HMMWV_DZ: HMMWV_Base {
side = 2;
crew = "";
typicalCargo[] = {};
class TransportMagazines {};
class TransportWeapons {};
transportMaxWeapons = 10;
transportMaxMagazines = 50;
transportmaxbackpacks = 4;
@@ -884,6 +886,8 @@ class HMMWV_M1151_M2_DES_Base_EP1_DZ: HMMWV_Base
faction = "BIS_US";
crew = "";
typicalCargo[] = {};
class TransportMagazines {};
class TransportWeapons {};
class Turrets: Turrets
{
class MainTurret: MainTurret
@@ -931,32 +935,6 @@ class HMMWV_M1151_M2_DES_Base_EP1_DZ: HMMWV_Base
weapon = "M2";
};
};
class TransportMagazines
{
class _xx_30Rnd_556x45_Stanag
{
magazine = "30Rnd_556x45_Stanag";
count = 15;
};
class _xx_HandGrenade_West
{
magazine = "HandGrenade_West";
count = 2;
};
class _xx_SmokeShellGreen
{
magazine = "SmokeShellGreen";
count = 2;
};
class _xx_SmokeShell
{
magazine = "SmokeShell";
count = 2;
};
};
class TransportWeapons
{
};
class Damage
{
tex[] = {};
@@ -1110,3 +1088,33 @@ class HMMWV_M2_DZ: HMMWV_M2 {
armor = 40;
damageResistance = 0.00581;
};
class HMMWV_M1035_DES_EP1 : HMMWV_base {
crew = "";
typicalCargo[] = {};
class TransportMagazines {};
class TransportWeapons {};
};
class HMMWV_Ambulance : HMMWV_base {
crew = "";
typicalCargo[] = {};
class TransportMagazines {};
class TransportWeapons {};
};
class HMMWV;
class HMMWV_DES_EP1 : HMMWV {
crew = "";
typicalCargo[] = {};
class TransportMagazines {};
class TransportWeapons {};
};
class HMMWV_Ambulance_base;
class HMMWV_Ambulance_CZ_DES_EP1 : HMMWV_Ambulance_base {
crew = "";
typicalCargo[] = {};
class TransportMagazines {};
class TransportWeapons {};
};