summaryrefslogtreecommitdiff
path: root/src/game/g_combat.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/g_combat.c')
-rw-r--r--src/game/g_combat.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/game/g_combat.c b/src/game/g_combat.c
index 0622ad8..4cf2722 100644
--- a/src/game/g_combat.c
+++ b/src/game/g_combat.c
@@ -288,7 +288,8 @@ void player_die( gentity_t *self, gentity_t *inflictor, gentity_t *attacker, int
{
AddScore( attacker, 1 );
- attacker->client->lastKillTime = level.time;
+ if( !g_gradualFreeFunds.integer )
+ attacker->client->pers.lastFreekillTime = level.time;
attacker->client->pers.statscounters.kills++;
attacker->client->pers.karma += 50;
if( attacker->client->pers.teamSelection == PTE_ALIENS )