diff options
author | Paweł Redman <pawel.redman@gmail.com> | 2015-06-22 01:02:01 +0200 |
---|---|---|
committer | Paweł Redman <pawel.redman@gmail.com> | 2015-06-22 01:02:01 +0200 |
commit | dc87cba52101aa4c6ad94c652460bff8520231bd (patch) | |
tree | 0add2e6edf633a2f7c7a137f0c5238466e1f323f /src/game/g_combat.c | |
parent | 88e570be6c8b732d81cdb69ce0235ef9e8ef5885 (diff) |
Remove Advanced Dretch.
Diffstat (limited to 'src/game/g_combat.c')
-rw-r--r-- | src/game/g_combat.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/game/g_combat.c b/src/game/g_combat.c index d0e381b..a8938f8 100644 --- a/src/game/g_combat.c +++ b/src/game/g_combat.c @@ -1159,7 +1159,6 @@ void G_SpawnDamageIndicator( gentity_t *ent, gentity_t *inflictor, switch( mod ) { case MOD_POISON: - case MOD_INFECTION: di->flags |= DIF_INDIRECT | DIF_PERSISTENT; break; @@ -1332,8 +1331,7 @@ void G_Damage( gentity_t *targ, gentity_t *inflictor, gentity_t *attacker, // if dretchpunt is enabled and this is a dretch, do dretchpunt instead of damage if( g_dretchPunt.integer && - ( targ->client->ps.stats[ STAT_CLASS ] == PCL_ALIEN_LEVEL0 || - targ->client->ps.stats[ STAT_CLASS ] == PCL_ALIEN_LEVEL0_UPG ) ) + targ->client->ps.stats[ STAT_CLASS ] == PCL_ALIEN_LEVEL0 ) { vec3_t dir, push; |