diff --git a/plugins/L4D2Tools.smx b/plugins/L4D2Tools.smx index 8034f32..0e5b8a0 100644 Binary files a/plugins/L4D2Tools.smx and b/plugins/L4D2Tools.smx differ diff --git a/scripting/L4D2Tools.sp b/scripting/L4D2Tools.sp index fc132b5..0be5f3a 100644 --- a/scripting/L4D2Tools.sp +++ b/scripting/L4D2Tools.sp @@ -348,7 +348,7 @@ public Action Event_OnTakeDamage(int victim, int& attacker, int& inflictor, floa if(!attackerVisible) { //Zombie is behind the bot, reduce damage taken and slowly kill zombie (1/10 of default hp per hit) damage = damage / 2.0; - SDKHooks_TakeDamage(attacker, victim, victim, 6.0); + SDKHooks_TakeDamage(attacker, victim, victim, 10.0); return Plugin_Changed; } }