From 22bfcab00937a147a91073796d71538dadbee491 Mon Sep 17 00:00:00 2001 From: Paweł Redman Date: Sat, 11 Apr 2015 21:04:20 +0200 Subject: Make Dragoon's chomp more reliable. --- src/game/g_combat.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/game/g_combat.c') diff --git a/src/game/g_combat.c b/src/game/g_combat.c index 270459d..b0d435b 100644 --- a/src/game/g_combat.c +++ b/src/game/g_combat.c @@ -1253,12 +1253,8 @@ void G_Damage( gentity_t *targ, gentity_t *inflictor, gentity_t *attacker, if( inflictor->s.weapon != WP_NONE ) { - Com_Printf( "^2DEBUG: weapon knockback: %d * %f = ", - knockback, BG_Weapon( inflictor->s.weapon )->knockbackScale ); knockback = (int)( (float)knockback * BG_Weapon( inflictor->s.weapon )->knockbackScale ); - Com_Printf( "%d\n", knockback ); - } if( targ->client ) -- cgit