diff --git a/plugins/l4d2_detections.smx b/plugins/l4d2_detections.smx index fa6728c..6aadb4b 100644 Binary files a/plugins/l4d2_detections.smx and b/plugins/l4d2_detections.smx differ diff --git a/scripting/l4d2_detections.sp b/scripting/l4d2_detections.sp index 1840c2b..9d9624f 100644 --- a/scripting/l4d2_detections.sp +++ b/scripting/l4d2_detections.sp @@ -129,7 +129,8 @@ public void Event_HealSuccess(Event event, const char[] name, bool dontBroadcast if(client) { int target = GetClientOfUserId(event.GetInt("subject")); int amount = event.GetInt("health_restored"); - PrintToConsoleAll("[Debug] %N healed %N (+%d health)", client, target, amount); + int orgHealth = GetClientHealth(target) - amount; + PrintToConsoleAll("[Debug] %N healed %N (+%d health, was %d)", client, target, amount, orgHealth); } }