diff options
Diffstat (limited to 'src/game/g_combat.c')
-rw-r--r-- | src/game/g_combat.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/game/g_combat.c b/src/game/g_combat.c index eb8698c1..7e38f119 100644 --- a/src/game/g_combat.c +++ b/src/game/g_combat.c @@ -962,6 +962,10 @@ void G_Damage( gentity_t *targ, gentity_t *inflictor, gentity_t *attacker, if( !strcmp( inflictor->classname, "team_human_tesla" ) ) knockback *= 4; + // ...and for goon pouncing + if( mod == MOD_LEVEL3_POUNCE ) + knockback *= 3; + if( targ->client ) { knockback = (int)( (float)knockback * |