diff options
Diffstat (limited to 'src/cgame')
-rw-r--r-- | src/cgame/cg_draw.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cgame/cg_draw.c b/src/cgame/cg_draw.c index 7ca427f..d8b411c 100644 --- a/src/cgame/cg_draw.c +++ b/src/cgame/cg_draw.c @@ -3878,7 +3878,7 @@ found_blob: blob->value = value; blob->flags = flags; VectorCopy( origin, blob->origin ); - VectorSet( blob->velocity, crandom( ) * 50, crandom( ) * 50, 300 ); + VectorSet( blob->velocity, crandom( ) * 20, crandom( ) * 20, 100 ); } static void CG_DrawNumber( float x, float y, float h, char *str ) @@ -3962,7 +3962,7 @@ static void CG_DrawDamageBlobs( void ) CG_DrawNumber( x, y, scale, str ); VectorMA( blob->origin, dt, blob->velocity, blob->origin ); - blob->velocity[ 2 ] -= 800 * dt; + blob->velocity[ 2 ] -= 300 * dt; } trap_R_SetColor( NULL ); |