diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/game/g_weapon.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/game/g_weapon.c b/src/game/g_weapon.c index 316124c..3f7c65b 100644 --- a/src/game/g_weapon.c +++ b/src/game/g_weapon.c @@ -970,7 +970,10 @@ void CheckGrabAttack( gentity_t *ent ) VectorMA( muzzle, LEVEL1_GRAB_RANGE, forward, end ); + G_UnlaggedOn( ent, muzzle, LEVEL1_GRAB_RANGE ); trap_Trace( &tr, muzzle, NULL, NULL, end, ent->s.number, MASK_SHOT ); + G_UnlaggedOff( ); + if( tr.surfaceFlags & SURF_NOIMPACT ) return; |