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 fb822c3c..732e50f2 100644 --- a/src/game/g_combat.c +++ b/src/game/g_combat.c @@ -935,6 +935,10 @@ void G_Damage( gentity_t *targ, gentity_t *inflictor, gentity_t *attacker, knockback = damage; + // silly hack to give norf his knockbacking teslas + if( !strcmp( inflictor->classname, "team_human_tesla" ) ) + knockback *= 4; + if( targ->client ) { knockback = (int)( (float)knockback * |