diff options
Diffstat (limited to 'src/game/g_combat.c')
-rw-r--r-- | src/game/g_combat.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/game/g_combat.c b/src/game/g_combat.c index c781959..81a5345 100644 --- a/src/game/g_combat.c +++ b/src/game/g_combat.c @@ -286,7 +286,9 @@ void player_die( gentity_t *self, gentity_t *inflictor, gentity_t *attacker, int } else { - AddScore( attacker, 1 ); + if( !g_nullifyTyrantKills.integer || ( meansOfDeath != MOD_LEVEL4_CHARGE && meansOfDeath != MOD_LEVEL4_CLAW && + !( meansOfDeath == MOD_CHAINGUN && BG_InventoryContainsUpgrade( UP_BATTLESUIT, attacker->client->ps.stats ) ) ) ) + AddScore( attacker, 1 ); if( g_gradualFreeFunds.integer < 2 ) attacker->client->pers.lastFreekillTime = level.time; |