summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/cgame/cg_draw.c4
-rw-r--r--src/game/g_weapon.c2
2 files changed, 3 insertions, 3 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 );
diff --git a/src/game/g_weapon.c b/src/game/g_weapon.c
index 3a8c8ac..95e0b11 100644
--- a/src/game/g_weapon.c
+++ b/src/game/g_weapon.c
@@ -1473,7 +1473,7 @@ static void G_CreateNewZap( gentity_t *creator, gentity_t *target )
{
if( !zap->targets[ i ]->client ||
zap->targets[ i ]->client->ps.stats[ STAT_TEAM ] != TEAM_ALIENS )
- G_Damage( zap->targets[ i ], target, zap->creator, forward, target->s.origin,
+ G_Damage( zap->targets[ i ], target, zap->creator, forward, zap->targets[ i ]->s.origin,
LEVEL2_AREAZAP_DMG * ( 1 - pow( (zap->distances[ i ] /
LEVEL2_AREAZAP_CHAIN_RANGE ), LEVEL2_AREAZAP_CHAIN_FALLOFF ) ) + 1,
DAMAGE_NO_KNOCKBACK | DAMAGE_NO_LOCDAMAGE,