From 87ae75edc90725b0372f4ac4cb656c1786d9a152 Mon Sep 17 00:00:00 2001 From: mazinskihenry <33608576+mazinskihenry@users.noreply.github.com> Date: Tue, 14 Jan 2025 11:46:04 -0800 Subject: [PATCH] Update fnc_basicDiagnosticLocal.sqf --- addons/vitals/functions/fnc_basicDiagnosticLocal.sqf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/addons/vitals/functions/fnc_basicDiagnosticLocal.sqf b/addons/vitals/functions/fnc_basicDiagnosticLocal.sqf index 760e6b9df..fbcba90fc 100644 --- a/addons/vitals/functions/fnc_basicDiagnosticLocal.sqf +++ b/addons/vitals/functions/fnc_basicDiagnosticLocal.sqf @@ -18,11 +18,11 @@ params ["_medic", "_patient"]; -private _bloodPressure = GET_BLOOD_PRESSURE(unit) +private _bloodPressure = GET_BLOOD_PRESSURE(_patient) private _hr = GET_HEART_RATE(_patient); -private _rr = GET_BREATHING_RATE(unit) +private _rr = GET_BREATHING_RATE(_patient) _bloodPressure params ["_bloodPressureLow", "_bloodPressureHigh"]; _logOutput = format [LLSTRING(BasicDiagnostic_Output), _hr, _bloodPressureHigh, _bloodPressureLow, _rr]; -[_patient, "quick_view", LSTRING(basicDiagnostic_Log), [_medic call ACEFUNC(common,getName), _logOutput]] call ACEFUNC(medical_treatment,addToLog); \ No newline at end of file +[_patient, "quick_view", LSTRING(basicDiagnostic_Log), [_medic call ACEFUNC(common,getName), _logOutput]] call ACEFUNC(medical_treatment,addToLog);