Disable dragging on big AA Turrets (#5251)

This commit is contained in:
PabstMirror 2017-06-06 01:39:49 -05:00 committed by GitHub
parent 606c6d18a6
commit b3fa074c38

View File

@ -30,6 +30,21 @@ class CfgVehicles {
GVAR(dragDirection) = 0; 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 // ammo boxes
class ThingX; class ThingX;
class Items_base_F; class Items_base_F;