Skip to content

Commit

Permalink
Tabs for spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
mazinskihenry committed Nov 28, 2024
1 parent ff9ee9b commit d34fbad
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions addons/breathing/functions/fnc_checkAircraftOxygen.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@
params ["_vehicle", "_patient"];

if (isNull objectParent _patient) exitWith {
false
false
};

private _fullCrew = fullCrew _vehicle;
private _playerPosition = (_fullCrew select {(_x select 0) == _patient}) select 1;

if (_playerPosition isEqualTo "cargo") exitWith {
false
false
};

true
true
2 changes: 1 addition & 1 deletion addons/breathing/functions/fnc_checkPersonalOxygen.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ params ["_patient"];
private _maskStatus = _patient getVariable [QGVAR(oxygenMaskStatus), [0,0]];

if (_maskStatus isEqualTo [0,0]) exitWith {
[LSTRING(VehicleOxygen_Affirm), 1.5, _patient] call ACEFUNC(common,displayTextStructured);
[LSTRING(VehicleOxygen_Affirm), 1.5, _patient] call ACEFUNC(common,displayTextStructured);
};

[format ["%1 %2", (_maskStatus select 0), LLSTRING(PersonalOxygen_Remaining)], 1.5, _patient] call ACEFUNC(common,displayTextStructured);

0 comments on commit d34fbad

Please sign in to comment.