diff options
-rw-r--r-- | src/game/g_combat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/g_combat.c b/src/game/g_combat.c index 0c6086d..423b517 100644 --- a/src/game/g_combat.c +++ b/src/game/g_combat.c @@ -1466,7 +1466,7 @@ void G_Damage( gentity_t *targ, gentity_t *inflictor, gentity_t *attacker, if( targ->s.eType == ET_BUILDABLE ) blob->flags |= DAMAGE_BLOB_BUILDABLE; - if( dflags & DAMAGE_RADIUS ) + if( ( dflags & DAMAGE_RADIUS ) || mod == MOD_POISON ) { blob->flags |= DAMAGE_BLOB_SPLASH; VectorAdd( targ->r.absmin, targ->r.absmax, blob->origin ); |