summaryrefslogtreecommitdiff
path: root/src/game
diff options
context:
space:
mode:
authorChristopher Schwarz <lakitu7@gmail.com>2011-01-30 20:06:41 +0000
committerTim Angus <tim@ngus.net>2013-01-03 00:17:56 +0000
commitb143b76b53eaf1beab387564c8209d7666244aa9 (patch)
tree3fac14f01dd1d6f1f788fb9b66e54a543fbffd27 /src/game
parentf775b0be2e4ffca532101223e1b9f5b8d09c7987 (diff)
* Fix not giving score/stage credits to aliens when humans decon dead buildables before the explosion (thanks Teapot)
Diffstat (limited to 'src/game')
-rw-r--r--src/game/g_cmds.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/game/g_cmds.c b/src/game/g_cmds.c
index 49603c39..51f5ea65 100644
--- a/src/game/g_cmds.c
+++ b/src/game/g_cmds.c
@@ -1785,6 +1785,7 @@ void Cmd_Destroy_f( gentity_t *ent )
if( traceEnt->health <= 0 )
{
G_QueueBuildPoints( traceEnt );
+ G_RewardAttackers( traceEnt );
G_FreeEntity( traceEnt );
return;
}