- fixed: Particles should disappear if their alpha goes below zero.

This commit is contained in:
Christoph Oelckers 2017-01-08 19:44:00 +01:00
commit 97a90c52e0
2 changed files with 1 additions and 6 deletions

View file

@ -821,11 +821,6 @@ bool P_CheckSight (AActor *t1, AActor *t2, int flags)
return false;
}
if (t2->player)
{
int a = 0;
}
const sector_t *s1 = t1->Sector;
const sector_t *s2 = t2->Sector;
int pnum = int(s1->Index()) * level.sectors.Size() + int(s2->Index());