diff --git a/CHANGE LOG 1.0.6.3.txt b/CHANGE LOG 1.0.6.3.txt index 65aab47ee..affc016df 100644 --- a/CHANGE LOG 1.0.6.3.txt +++ b/CHANGE LOG 1.0.6.3.txt @@ -11,9 +11,10 @@ [FIXED] 45Rnd_545x39_RPK error after it was removed with the 2018-04-05 A2OA CorePatch (d249227) [FIXED] Disabled Arma's automatic vehicle refuel, repair and rearm at WarfareBVehicleServicePoint buildings (2c4f06c) @dihan48 [FIXED] DistanceFoot database stat was incorrect. @dihan48 +[FIXED] Wrong cargo count of Refuel Trucks after last Corepatch. @AirwavesMan [UPDATED] Spawning of Zombies and Loot in Safe Zones can now be toggled, disabled by default, see configVariables.sqf/DZE_SafeZoneZombieLoot (6248add, 141b25e) @oiad @_Lance_ [UPDATED] Added notification when status icons are disabled [UPDATED] Added night vision mode back to DMR_DZ and M4SPR_DZE after it was removed with the 2018-04-05 A2OA CorePatch -[INFO] Synced with DayZMod upstream up to commit fe063a8 \ No newline at end of file +[INFO] Synced with DayZMod upstream up to commit fe063a8 diff --git a/SQF/dayz_code/Configs/CfgVehicles/Car/Kamaz.hpp b/SQF/dayz_code/Configs/CfgVehicles/Car/Kamaz.hpp index 841cf40ef..0db079008 100644 --- a/SQF/dayz_code/Configs/CfgVehicles/Car/Kamaz.hpp +++ b/SQF/dayz_code/Configs/CfgVehicles/Car/Kamaz.hpp @@ -89,6 +89,9 @@ class KamazRefuel_DZ: KamazRefuel { crew = ""; typicalCargo[] = {}; hiddenSelections[] = {}; + transportMaxWeapons = 50; + transportMaxMagazines = 200; + transportmaxbackpacks = 8; class TransportMagazines{}; class TransportWeapons{}; fuelCapacity = 10400; diff --git a/SQF/dayz_code/Configs/CfgVehicles/Car/Mtvr.hpp b/SQF/dayz_code/Configs/CfgVehicles/Car/Mtvr.hpp index e31c991c9..c5c9f9b18 100644 --- a/SQF/dayz_code/Configs/CfgVehicles/Car/Mtvr.hpp +++ b/SQF/dayz_code/Configs/CfgVehicles/Car/Mtvr.hpp @@ -21,6 +21,9 @@ class MtvrRefuel_base : MtvrRefuel expansion = 1; crew = ""; typicalCargo[] = {}; + transportMaxWeapons = 50; + transportMaxMagazines = 200; + transportmaxbackpacks = 8; class TransportMagazines {}; class TransportWeapons {}; }; @@ -44,8 +47,11 @@ class MtvrRefuel_DZ: MtvrRefuel { crew = ""; typicalCargo[] = {}; hiddenSelections[] = {}; + transportMaxWeapons = 50; + transportMaxMagazines = 200; + transportmaxbackpacks = 8; class TransportMagazines{}; class TransportWeapons{}; 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 d427ab406..d628b74e1 100644 --- a/SQF/dayz_code/Configs/CfgVehicles/Car/UralCivil_DZ.hpp +++ b/SQF/dayz_code/Configs/CfgVehicles/Car/UralCivil_DZ.hpp @@ -93,8 +93,11 @@ class UralRefuel_TK_EP1_DZ: UralRefuel_TK_EP1 { crew = ""; typicalCargo[] = {}; hiddenSelections[] = {}; + transportMaxWeapons = 50; + transportMaxMagazines = 200; + transportmaxbackpacks = 8; class TransportMagazines{}; class TransportWeapons{}; 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 18ab8f1b0..fb6bbdb1e 100644 --- a/SQF/dayz_code/Configs/CfgVehicles/Car/V3S_Civ.hpp +++ b/SQF/dayz_code/Configs/CfgVehicles/Car/V3S_Civ.hpp @@ -72,8 +72,11 @@ class V3S_Refuel_TK_GUE_EP1_DZ: V3S_Refuel_TK_GUE_EP1 { crew = ""; typicalCargo[] = {}; hiddenSelections[] = {}; + transportMaxWeapons = 50; + transportMaxMagazines = 200; + transportmaxbackpacks = 8; class TransportMagazines{}; class TransportWeapons{}; transportFuel = 0; //Required to disable A2 built in auto refuel for fuel trucks fuelCapacity = 10000; -}; \ No newline at end of file +};