mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Disable dragging on big AA Turrets (#5251)
This commit is contained in:
parent
606c6d18a6
commit
b3fa074c38
@ -30,6 +30,21 @@ class CfgVehicles {
|
||||
GVAR(dragDirection) = 0;
|
||||
};
|
||||
|
||||
// Big 1.70 Autonomous AA Turrets
|
||||
class StaticMGWeapon;
|
||||
class AAA_System_01_base_F: StaticMGWeapon { // Praetorian 1C (aka Phalanx CIWS)
|
||||
GVAR(canCarry) = 0;
|
||||
GVAR(canDrag) = 0;
|
||||
};
|
||||
class SAM_System_01_base_F: StaticMGWeapon { // Mk49 Spartan
|
||||
GVAR(canCarry) = 0;
|
||||
GVAR(canDrag) = 0;
|
||||
};
|
||||
class SAM_System_02_base_F: StaticMGWeapon { // Mk21 Centurion
|
||||
GVAR(canCarry) = 0;
|
||||
GVAR(canDrag) = 0;
|
||||
};
|
||||
|
||||
// ammo boxes
|
||||
class ThingX;
|
||||
class Items_base_F;
|
||||
|
Loading…
Reference in New Issue
Block a user