diff options
Diffstat (limited to 'src/game/g_missile.c')
-rw-r--r-- | src/game/g_missile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/g_missile.c b/src/game/g_missile.c index 7ec9ee09..05ed45a1 100644 --- a/src/game/g_missile.c +++ b/src/game/g_missile.c @@ -197,7 +197,7 @@ void G_MissileImpact( gentity_t *ent, trace_t *trace ) if( VectorLength( velocity ) == 0 ) velocity[ 2 ] = 1; // stepped on a grenade - G_Damage( other, ent, attacker, velocity, ent->s.origin, ent->damage, + G_Damage( other, ent, attacker, velocity, ent->r.currentOrigin, ent->damage, DAMAGE_NO_LOCDAMAGE, ent->methodOfDeath ); } } |