Skip to content

Commit

Permalink
Circulation - ETCo2 Monitoring fix (#718)
Browse files Browse the repository at this point in the history
**When merged this pull request will:**
- Move the etco2 and rr variables outside of the TQ check
### IMPORTANT

- [Development Guidelines](https://ace3.acemod.org/wiki/development/)
are read, understood and applied.
- Title of this PR uses our standard template `Component -
Add|Fix|Improve|Change|Make|Remove {changes}`.
  • Loading branch information
Cplhardcore authored Jan 22, 2025
1 parent 71a65bb commit 90d7c24
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions addons/circulation/functions/fnc_AEDX_VitalsMonitor.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,10 @@ if (_patient getVariable ["kat_AEDXPatient_PFH", -1] isEqualTo -1) then {
_pr = 0;
} else {
_spO2 = GET_KAT_SPO2(_patient);

_etco2 = GET_ETCO2(_patient);
_breathrate = GET_BREATHING_RATE(_patient);
};

private _etco2 = GET_ETCO2(_patient);
private _breathrate = GET_BREATHING_RATE(_patient);

// List vitals depending on if AED pads and vitals monitoring (pressure cuff + pulse oximeter) is connected
if (_patient getVariable [QGVAR(AED_X_VitalsMonitor_Connected), false] && _patient getVariable [QGVAR(DefibrillatorPads_Connected), false]) then {
Expand Down

0 comments on commit 90d7c24

Please sign in to comment.