mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-13 19:52:38 +03:00
- All buildables are grouped together now. - Buildables can be used and found under "DayZ Epoch Buildables" in the editor now. - Update scope of a few vehicles. Most base classes should be private or at least protected. - Epoch Loot Container can be found under "DayZ Epoch Crates" in the editor now.
9 lines
220 B
C++
9 lines
220 B
C++
class WarfareBBaseStructure;
|
|
|
|
class Base_WarfareBVehicleServicePoint: WarfareBBaseStructure
|
|
{
|
|
//Disable Arma's automatic vehicle rearm, refuel and repair.
|
|
transportAmmo = 0;
|
|
transportFuel = 0;
|
|
transportRepair = 0;
|
|
}; |