Skip to content

Commit

Permalink
fixes 2
Browse files Browse the repository at this point in the history
  • Loading branch information
Cplhardcore committed Dec 5, 2024
1 parent 6d7be26 commit 8a884ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ _bloodPressure params ["_bloodPressureLow", "_bloodPressureHigh"];
if (_bloodPressureLow > 40) then {
if (_medic call ACEFUNC(medical_treatment,isMedic)) then {
_bloodPressureOutput = LSTRING(Check_Bloodpressure_Output_Palp);
_logOutput = format [localize "STR_KAT_Circulation_Bloodpressure_Output_Palp", (round (_bloodPressureLow / 10) * 10) + ([10, -10] select (random 1 > 0.5))];
_logOutput = format [LLSTRING(Bloodpressure_Output_Palp), (round (_bloodPressureLow / 10) * 10) + ([10, -10] select (random 1 > 0.5))];
} else {
if (_bloodPressureHigh > 20) then {
_bloodPressureOutput = ACELSTRING(medical_treatment,Check_Bloodpressure_Output_2);
Expand Down
2 changes: 1 addition & 1 deletion addons/circulation/functions/fnc_checkPulseLocal.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ private _logOutput = ACELSTRING(medical_treatment,Check_Pulse_None);
if (_heartRate > 1) then {
if (_medic call ACEFUNC(medical_treatment,isMedic)) then {
_heartRateOutput = LSTRING(Check_Pulse_Output);
_logOutput = format [LSTRING(Circulation,Pulse_Output), (round(_heartRateOutput / 5) * 5)];
_logOutput = format [LLSTRING(Pulse_Output), (round(_heartRateOutput / 5) * 5)];
} else {
_heartRateOutput = ACELSTRING(medical_treatment,Check_Pulse_Output_2);
_logOutput = ACELSTRING(medical_treatment,Check_Pulse_Weak);
Expand Down

0 comments on commit 8a884ae

Please sign in to comment.