From dc87cba52101aa4c6ad94c652460bff8520231bd Mon Sep 17 00:00:00 2001 From: Paweł Redman Date: Mon, 22 Jun 2015 01:02:01 +0200 Subject: Remove Advanced Dretch. --- src/game/g_combat.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/game/g_combat.c') 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; -- cgit