L4D2Tools: Increase behind-zombie dmg to 10

This commit is contained in:
Jackzie 2021-05-11 15:58:34 -05:00
parent 1027337583
commit 8c99de0a98
No known key found for this signature in database
GPG key ID: 1E834FE36520537A
2 changed files with 1 additions and 1 deletions

View file

@ -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;
}
}