Remove unused check.

This commit is contained in:
Night Owl 2016-06-13 18:48:17 +05:00
parent 1866872887
commit a9796904ec

View File

@ -1176,7 +1176,7 @@ int SENTENCEG_PlayRndI(edict_t *entity, int isentenceg,
name[0] = 0;
ipick = USENTENCEG_Pick(isentenceg, name);
if (ipick > 0 && name)
if( ipick > 0 )
EMIT_SOUND_DYN(entity, CHAN_VOICE, name, volume, attenuation, flags, pitch);
return ipick;
}