Change debug

This commit is contained in:
ulteq 2016-12-09 18:43:32 +01:00
parent 03f9ba1bad
commit 05b9208d3c

View File

@ -105,7 +105,7 @@ if (_bloodLoss > BLOOD_LOSS_KNOCK_OUT_THRESHOLD * _cardiacOutput) then {
};
#ifdef DEBUG_MODE_FULL
if (isPlayer _unit) then {
if (!isPlayer _unit) then {
hintSilent format["blood volume: %1, blood loss: [%2, %3]\nhr: %4, bp: %5, pain: %6", round(_bloodVolume * 100) / 100, round(_bloodLoss * 1000) / 1000, round((_bloodLoss / (0.001 max _cardiacOutput)) * 100) / 100, round(_heartRate), _bloodPressure, round(_painLevel * 100) / 100];
};
#endif