From eda3facceaa745c39514c8b81d6a5aa812615798 Mon Sep 17 00:00:00 2001 From: Thilo Schulz Date: Fri, 24 Jun 2011 13:15:03 +0000 Subject: [PATCH] Fix grenade rotation ends always the orientation (#5053), patch by Eugene C. --- code/game/g_missile.c | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/g_missile.c b/code/game/g_missile.c index fbf21e47..29efc62a 100644 --- a/code/game/g_missile.c +++ b/code/game/g_missile.c @@ -46,6 +46,7 @@ void G_BounceMissile( gentity_t *ent, trace_t *trace ) { // check for stop if ( trace->plane.normal[2] > 0.2 && VectorLength( ent->s.pos.trDelta ) < 40 ) { G_SetOrigin( ent, trace->endpos ); + ent->s.time = level.time / 4; return; } }