mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2026-02-04 15:22:53 +03:00
Fixing wrong cargo count of Refuel Trucks (#2021)
* Update Kamaz Refuel * Update MTVR Refuel * Update Ural Refuel * Update V3S Refuel * Wrong cargo count of Refuel Trucks
This commit is contained in:
@@ -11,6 +11,7 @@
|
|||||||
[FIXED] 45Rnd_545x39_RPK error after it was removed with the 2018-04-05 A2OA CorePatch (d249227)
|
[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] Disabled Arma's automatic vehicle refuel, repair and rearm at WarfareBVehicleServicePoint buildings (2c4f06c) @dihan48
|
||||||
[FIXED] DistanceFoot database stat was incorrect. @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] 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 notification when status icons are disabled
|
||||||
|
|||||||
@@ -89,6 +89,9 @@ class KamazRefuel_DZ: KamazRefuel {
|
|||||||
crew = "";
|
crew = "";
|
||||||
typicalCargo[] = {};
|
typicalCargo[] = {};
|
||||||
hiddenSelections[] = {};
|
hiddenSelections[] = {};
|
||||||
|
transportMaxWeapons = 50;
|
||||||
|
transportMaxMagazines = 200;
|
||||||
|
transportmaxbackpacks = 8;
|
||||||
class TransportMagazines{};
|
class TransportMagazines{};
|
||||||
class TransportWeapons{};
|
class TransportWeapons{};
|
||||||
fuelCapacity = 10400;
|
fuelCapacity = 10400;
|
||||||
|
|||||||
@@ -21,6 +21,9 @@ class MtvrRefuel_base : MtvrRefuel
|
|||||||
expansion = 1;
|
expansion = 1;
|
||||||
crew = "";
|
crew = "";
|
||||||
typicalCargo[] = {};
|
typicalCargo[] = {};
|
||||||
|
transportMaxWeapons = 50;
|
||||||
|
transportMaxMagazines = 200;
|
||||||
|
transportmaxbackpacks = 8;
|
||||||
class TransportMagazines {};
|
class TransportMagazines {};
|
||||||
class TransportWeapons {};
|
class TransportWeapons {};
|
||||||
};
|
};
|
||||||
@@ -44,6 +47,9 @@ class MtvrRefuel_DZ: MtvrRefuel {
|
|||||||
crew = "";
|
crew = "";
|
||||||
typicalCargo[] = {};
|
typicalCargo[] = {};
|
||||||
hiddenSelections[] = {};
|
hiddenSelections[] = {};
|
||||||
|
transportMaxWeapons = 50;
|
||||||
|
transportMaxMagazines = 200;
|
||||||
|
transportmaxbackpacks = 8;
|
||||||
class TransportMagazines{};
|
class TransportMagazines{};
|
||||||
class TransportWeapons{};
|
class TransportWeapons{};
|
||||||
transportFuel = 0; //Required to disable A2 built in auto refuel for fuel trucks
|
transportFuel = 0; //Required to disable A2 built in auto refuel for fuel trucks
|
||||||
|
|||||||
@@ -93,6 +93,9 @@ class UralRefuel_TK_EP1_DZ: UralRefuel_TK_EP1 {
|
|||||||
crew = "";
|
crew = "";
|
||||||
typicalCargo[] = {};
|
typicalCargo[] = {};
|
||||||
hiddenSelections[] = {};
|
hiddenSelections[] = {};
|
||||||
|
transportMaxWeapons = 50;
|
||||||
|
transportMaxMagazines = 200;
|
||||||
|
transportmaxbackpacks = 8;
|
||||||
class TransportMagazines{};
|
class TransportMagazines{};
|
||||||
class TransportWeapons{};
|
class TransportWeapons{};
|
||||||
transportFuel = 0; //Required to disable A2 built in auto refuel for fuel trucks
|
transportFuel = 0; //Required to disable A2 built in auto refuel for fuel trucks
|
||||||
|
|||||||
@@ -72,6 +72,9 @@ class V3S_Refuel_TK_GUE_EP1_DZ: V3S_Refuel_TK_GUE_EP1 {
|
|||||||
crew = "";
|
crew = "";
|
||||||
typicalCargo[] = {};
|
typicalCargo[] = {};
|
||||||
hiddenSelections[] = {};
|
hiddenSelections[] = {};
|
||||||
|
transportMaxWeapons = 50;
|
||||||
|
transportMaxMagazines = 200;
|
||||||
|
transportmaxbackpacks = 8;
|
||||||
class TransportMagazines{};
|
class TransportMagazines{};
|
||||||
class TransportWeapons{};
|
class TransportWeapons{};
|
||||||
transportFuel = 0; //Required to disable A2 built in auto refuel for fuel trucks
|
transportFuel = 0; //Required to disable A2 built in auto refuel for fuel trucks
|
||||||
|
|||||||
Reference in New Issue
Block a user