Fix paper items not being removed after shrunk

This commit is contained in:
James R 2020-10-30 21:13:36 -07:00
parent 46b1b6db1c
commit 76e0102b3f

View file

@ -409,7 +409,7 @@ boolean K_FloatingItemCollide(mobj_t *t1, mobj_t *t2)
{
player_t * player = t2->player;
if (t1->health < 1)
if (t1->flags2 & MF2_NIGHTSPULL)
return true;
if (! player)
@ -433,7 +433,5 @@ boolean K_FloatingItemCollide(mobj_t *t1, mobj_t *t2)
t1->destscale = mapobjectscale>>4;
t1->scalespeed <<= 1;
t1->health--;
return false;
}