summaryrefslogtreecommitdiff
path: root/src/game
diff options
context:
space:
mode:
authorRoman Tetelman <kevlarman@gmail.com>2009-10-03 12:17:52 +0000
committerTim Angus <tim@ngus.net>2013-01-03 00:15:50 +0000
commitbc76c88cd1ae898ed8d224fd70b0d3f797b71745 (patch)
tree9a7f364867113f3d25c2cd755540582cf34a250d /src/game
parent0244441adde816d896eb05034b48202bc19e19dd (diff)
* fix for location not updating while following a player (reported by megatog615)
* dead buildables no longer bleed
Diffstat (limited to 'src/game')
-rw-r--r--src/game/g_weapon.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/game/g_weapon.c b/src/game/g_weapon.c
index beb91429..20666b50 100644
--- a/src/game/g_weapon.c
+++ b/src/game/g_weapon.c
@@ -247,6 +247,10 @@ static void BloodSpurt( gentity_t *attacker, gentity_t *victim, trace_t *tr )
if( !attacker->client )
return;
+
+ if( victim->health <= 0 )
+ return;
+
tent = G_TempEntity( tr->endpos, EV_MISSILE_HIT );
tent->s.otherEntityNum = victim->s.number;
tent->s.eventParm = DirToByte( tr->plane.normal );
@@ -270,6 +274,9 @@ static void WideBloodSpurt( gentity_t *attacker, gentity_t *victim, trace_t *tr
if( !attacker->client )
return;
+ if( victim->health <= 0 )
+ return;
+
if( tr )
VectorSubtract( tr->endpos, victim->s.origin, normal );
else