aboutsummaryrefslogtreecommitdiffstats
path: root/code/game/g_missile.c
diff options
context:
space:
mode:
Diffstat (limited to 'code/game/g_missile.c')
-rw-r--r--code/game/g_missile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/code/game/g_missile.c b/code/game/g_missile.c
index fbf21e4..d54b5bc 100644
--- a/code/game/g_missile.c
+++ b/code/game/g_missile.c
@@ -666,7 +666,7 @@ gentity_t *fire_rocket (gentity_t *self, vec3_t start, vec3_t dir) {
bolt->s.pos.trType = TR_LINEAR;
bolt->s.pos.trTime = level.time - MISSILE_PRESTEP_TIME; // move a bit on the very first frame
VectorCopy( start, bolt->s.pos.trBase );
- VectorScale( dir, 900, bolt->s.pos.trDelta );
+ VectorScale( dir, 350, bolt->s.pos.trDelta ); // default: 900 -bnewbold
SnapVector( bolt->s.pos.trDelta ); // save net bandwidth
VectorCopy (start, bolt->r.currentOrigin);