mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
1649422cbd
Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com> Co-authored-by: Grim <69561145+LinkIsGrim@users.noreply.github.com> Co-authored-by: LinkIsGrim <salluci.lovi@gmail.com>
11 lines
379 B
C++
11 lines
379 B
C++
class CfgWeapons {
|
|
class H_HelmetB;
|
|
class H_PilotHelmetFighter_B: H_HelmetB {
|
|
GVAR(oxygenSupply) = QUOTE(vehicle _this isKindOf 'Plane' || vehicle _this isKindOf 'Helicopter');
|
|
};
|
|
class Vest_Camo_Base;
|
|
class V_RebreatherB: Vest_Camo_Base {
|
|
GVAR(oxygenSupply) = QUOTE(eyePos _this select 2 < 0); // will only work for sea-level water
|
|
};
|
|
};
|