diff --git a/CHANGE LOG 1.0.6.2.txt b/CHANGE LOG 1.0.6.2.txt new file mode 100644 index 000000000..e3263d842 --- /dev/null +++ b/CHANGE LOG 1.0.6.2.txt @@ -0,0 +1,3 @@ +[FIXED] A2 auto refuel on Kamaz refuel trucks not disabled properly. #1855 @coresync2k @dreamforceinc + +[INFO] See Documents\CHANGE LOG 1.0.6.txt for the full list of 1.0.5.1 --> 1.0.6 changes. \ No newline at end of file diff --git a/SQF/dayz_code/Configs/CfgVehicles/Car/Kamaz.hpp b/SQF/dayz_code/Configs/CfgVehicles/Car/Kamaz.hpp index 8fb571103..841cf40ef 100644 --- a/SQF/dayz_code/Configs/CfgVehicles/Car/Kamaz.hpp +++ b/SQF/dayz_code/Configs/CfgVehicles/Car/Kamaz.hpp @@ -92,7 +92,7 @@ class KamazRefuel_DZ: KamazRefuel { class TransportMagazines{}; class TransportWeapons{}; fuelCapacity = 10400; - //For future Developement = transportFuel = 10400; // refueltruck + transportFuel = 0; //Required to disable A2 built in auto refuel for fuel trucks }; class KamazRefuel_DZE1: KamazRefuel_DZ { original = "KamazRefuel_DZ"; diff --git a/SQF/dayz_code/Configs/CfgVehicles/Car/Mtvr.hpp b/SQF/dayz_code/Configs/CfgVehicles/Car/Mtvr.hpp index c79d20181..e31c991c9 100644 --- a/SQF/dayz_code/Configs/CfgVehicles/Car/Mtvr.hpp +++ b/SQF/dayz_code/Configs/CfgVehicles/Car/Mtvr.hpp @@ -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; }; \ No newline at end of file diff --git a/SQF/dayz_code/Configs/CfgVehicles/Car/UralCivil_DZ.hpp b/SQF/dayz_code/Configs/CfgVehicles/Car/UralCivil_DZ.hpp index 5a038eb56..d427ab406 100644 --- a/SQF/dayz_code/Configs/CfgVehicles/Car/UralCivil_DZ.hpp +++ b/SQF/dayz_code/Configs/CfgVehicles/Car/UralCivil_DZ.hpp @@ -95,6 +95,6 @@ class UralRefuel_TK_EP1_DZ: UralRefuel_TK_EP1 { hiddenSelections[] = {}; class TransportMagazines{}; class TransportWeapons{}; - transportFuel = 0; + transportFuel = 0; //Required to disable A2 built in auto refuel for fuel trucks fuelCapacity = 10000; }; \ No newline at end of file diff --git a/SQF/dayz_code/Configs/CfgVehicles/Car/V3S_Civ.hpp b/SQF/dayz_code/Configs/CfgVehicles/Car/V3S_Civ.hpp index 5c447641e..2e455cc3c 100644 --- a/SQF/dayz_code/Configs/CfgVehicles/Car/V3S_Civ.hpp +++ b/SQF/dayz_code/Configs/CfgVehicles/Car/V3S_Civ.hpp @@ -72,6 +72,6 @@ class V3S_Refuel_TK_GUE_EP1_DZ: V3S_Refuel_TK_GUE_EP1 { hiddenSelections[] = {}; class TransportMagazines{}; class TransportWeapons{}; - transportFuel = 0; + transportFuel = 0; //Required to disable A2 built in auto refuel for fuel trucks fuelCapacity = 10000; }; \ No newline at end of file