summaryrefslogtreecommitdiff
path: root/src/game
diff options
context:
space:
mode:
authorPaweł Redman <pawel.redman@gmail.com>2015-04-03 02:21:52 +0200
committerPaweł Redman <pawel.redman@gmail.com>2015-04-03 02:21:52 +0200
commite6735d21e17ecbbe03607046ded443516b65c3a7 (patch)
tree090071e1ba7d9a336d27ec6759f744de50655c36 /src/game
parent53a42080d6a4e34359b86b6604c48049bcbabfad (diff)
Make damage blobs show the actual damage dealt.
Diffstat (limited to 'src/game')
-rw-r--r--src/game/g_combat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/g_combat.c b/src/game/g_combat.c
index 099b5e9..1a54981 100644
--- a/src/game/g_combat.c
+++ b/src/game/g_combat.c
@@ -1491,7 +1491,7 @@ void G_Damage( gentity_t *targ, gentity_t *inflictor, gentity_t *attacker,
( attacker->client->bufferedBlobCount++ );
VectorCopy( point, blob->origin );
- blob->value = damage;
+ blob->value = take;
blob->flags = flags;
}