Hide hitbox on nocollide whip

This commit is contained in:
AJ Martinez 2023-05-20 16:30:35 -07:00
parent 18d84c6c2c
commit d9dda87586

View file

@ -35,5 +35,8 @@ void Obj_InstaWhipThink (mobj_t *whip)
whip->renderflags &= ~RF_DONTDRAW;
else
whip->renderflags |= RF_DONTDRAW;
if (whip->extravalue2) // Whip has no hitbox but removing it is a pain in the ass
whip->renderflags |= RF_DONTDRAW;
}
}