-
Notifications
You must be signed in to change notification settings - Fork 739
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
HR and BP enhancement #2268
HR and BP enhancement #2268
Conversation
gienkov
commented
Aug 26, 2015
- It will display 0 HR and fail to find BP on limbs that have TQ on.
- Check for TQ is run only if medic is checking pulse on arms.
@@ -46,9 +46,14 @@ if (_heartRate > 1.0) then { | |||
}; | |||
}; | |||
|
|||
if (_selectionName in ["hand_l","hand_r"] && [_unit, _selectionName] call FUNC(hasTourniquetAppliedTo)) then { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
add here lazyEelevation that could Improve the Performance
if (_selectionName in ["hand_l","hand_r"] && {[_unit, _selectionName] call FUNC(hasTourniquetAppliedTo)}) then {
Doesn't take all limbs into account ( |
You don't check BP/HR on legs that's why check for arms only. You don't even get an option to check BP/HR on legs. |
Did the same for BP, it will display _You fail to find a blood pressure_ (it's in stringtable). |