Disable A2 auto-refuel feature on KamazRefuel trucks #1855

Fixes #1855

Mistake from 0701e5b
This commit is contained in:
ebayShopper
2017-03-03 13:30:13 -05:00
parent 496ae979b3
commit 3f3d8ce357
5 changed files with 8 additions and 5 deletions

View File

@@ -34,7 +34,7 @@ class MtvrRefuel_DES_EP1_DZ : MtvrRefuel_base {
hiddenSelectionsTextures[] = { "\CA\wheeled_E\MTVR\Data\MTVR_body_desert_co.paa", "\CA\wheeled_E\MTVR\Data\MTVR_body2_desert_co.paa", "\CA\wheeled_E\MTVR\Data\MTVR_interier_desert_co.paa", "\CA\wheeled_E\MTVR\Data\MTVR_Fuel_desert_CO.paa" };
class TransportMagazines{};
class TransportWeapons{};
transportFuel = 0;
transportFuel = 0; //Required to disable A2 built in auto refuel for fuel trucks
fuelCapacity = 10000;
};
@@ -46,6 +46,6 @@ class MtvrRefuel_DZ: MtvrRefuel {
hiddenSelections[] = {};
class TransportMagazines{};
class TransportWeapons{};
transportFuel = 0;
transportFuel = 0; //Required to disable A2 built in auto refuel for fuel trucks
fuelCapacity = 10000;
};