From b143b76b53eaf1beab387564c8209d7666244aa9 Mon Sep 17 00:00:00 2001 From: Christopher Schwarz Date: Sun, 30 Jan 2011 20:06:41 +0000 Subject: * Fix not giving score/stage credits to aliens when humans decon dead buildables before the explosion (thanks Teapot) --- src/game/g_cmds.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/game') 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; } -- cgit