Index: g_missile.c =================================================================== --- g_missile.c (revision 2050) +++ g_missile.c (working copy) @@ -46,6 +46,9 @@ // check for stop if ( trace->plane.normal[2] > 0.2 && VectorLength( ent->s.pos.trDelta ) < 40 ) { G_SetOrigin( ent, trace->endpos ); + // grenade orientation + if ( !strcmp( ent->classname, "grenade" ) ) + ent->s.time = level.time / 4; return; } }