Skip to content

Commit

Permalink
Revert "Remove Rearm/Repair"
Browse files Browse the repository at this point in the history
This reverts commit 281be2c.
  • Loading branch information
jonpas committed Nov 14, 2023
1 parent 167d1a1 commit 8cc839f
Showing 1 changed file with 52 additions and 0 deletions.
52 changes: 52 additions & 0 deletions addons/compat_cup_vehicles/CfgVehicles.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,56 @@
class CfgVehicles {
class CUP_MTVR_Base;
class CUP_MTVR_Reammo_Base: CUP_MTVR_Base {
transportAmmo = 0;
EGVAR(rearm,defaultSupply) = 1200;
};
class CUP_MTVR_Repair_Base: CUP_MTVR_Base {
transportRepair = 0;
EGVAR(repair,canRepair) = 1;
};

class CUP_V3S_Open_Base;
class CUP_V3S_Repair_Base: CUP_V3S_Open_Base {
transportRepair = 0;
EGVAR(repair,canRepair) = 1;
};
class CUP_V3S_Rearm_Base: CUP_V3S_Open_Base {
transportAmmo = 0;
EGVAR(rearm,defaultSupply) = 1200;
};

class CUP_Ural_Support_Base;
class CUP_Ural_Reammo_Base: CUP_Ural_Support_Base {
transportAmmo = 0;
EGVAR(rearm,defaultSupply) = 1200;
};
class CUP_Ural_Repair_Base: CUP_Ural_Support_Base {
transportRepair = 0;
EGVAR(repair,canRepair) = 1;
};

class CUP_Kamaz_5350_Base;
class CUP_Kamaz_5350_ReAmmo_Base: CUP_Kamaz_5350_Base {
transportAmmo = 0;
EGVAR(rearm,defaultSupply) = 1200;
};

class Truck_02_box_base_F;
class CUP_Kamaz_5350_Repair_Base: Truck_02_box_base_F {
transportRepair = 0;
EGVAR(repair,canRepair) = 1;
};

class CUP_T810_Unarmed_Base;
class CUP_T810_Reammo_Base: CUP_T810_Unarmed_Base {
transportAmmo = 0;
EGVAR(rearm,defaultSupply) = 1200;
};
class CUP_T810_Repair_Base: CUP_T810_Unarmed_Base {
transportRepair = 0;
EGVAR(repair,canRepair) = 1;
};

class Wheeled_APC_F;
class CUP_BTR80_Common_Base: Wheeled_APC_F {
class ace_viewports {
Expand Down

0 comments on commit 8cc839f

Please sign in to comment.