From c3ddbb4be7f79b16d8659180c5d1dfe1a84d0f4b Mon Sep 17 00:00:00 2001
From: Glowbal <thomasskooi@live.nl>
Date: Fri, 3 Apr 2015 21:51:44 +0200
Subject: [PATCH] Prevent the usage of the blood loss coefficient to increase
 blood volume on bleeding

---
 addons/medical/functions/fnc_getBloodLoss.sqf | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/addons/medical/functions/fnc_getBloodLoss.sqf b/addons/medical/functions/fnc_getBloodLoss.sqf
index ef0a97ea35..4f070e2546 100644
--- a/addons/medical/functions/fnc_getBloodLoss.sqf
+++ b/addons/medical/functions/fnc_getBloodLoss.sqf
@@ -42,4 +42,4 @@ if (GVAR(level) >= 2) then {
 } else {
     // TODO basic medical
 };
-_totalBloodLoss * GVAR(bleedingCoefficient);
+_totalBloodLoss * (GVAR(bleedingCoefficient) max 0);