From 6a31a440bb62eb7d6aff7d0a8133c7dd59cfc96c Mon Sep 17 00:00:00 2001 From: Tim Angus Date: Sat, 3 Oct 2009 12:44:13 +0000 Subject: * Remove some redundant code introduced at some point during the merge --- src/game/g_combat.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/game') diff --git a/src/game/g_combat.c b/src/game/g_combat.c index 08bde632..0e05da98 100644 --- a/src/game/g_combat.c +++ b/src/game/g_combat.c @@ -763,9 +763,6 @@ static float G_CalcDamageModifier( vec3_t point, gentity_t *targ, gentity_t *att VectorSubtract( targOrigin, point, bulletPath ); vectoangles( bulletPath, bulletAngle ); - if( hitRotation < 0.0f ) - hitRotation += 360.0f; - hitRotation = AngleNormalize360( targ->client->ps.viewangles[ YAW ] - bulletAngle[ YAW ] ); @@ -773,6 +770,7 @@ static float G_CalcDamageModifier( vec3_t point, gentity_t *targ, gentity_t *att modifier = GetPointDamageModifier( targ, g_damageRegions[ class ], g_numDamageRegions[ class ], hitRotation, hitRatio ); + for( i = UP_NONE + 1; i < UP_NUM_UPGRADES; i++ ) { if( BG_InventoryContainsUpgrade( i, targ->client->ps.stats ) ) -- cgit