Fix missing flashtics check on bananas

This commit is contained in:
GenericHeroGuy 2025-11-21 22:34:44 +01:00
parent 65d346a93e
commit 16ab5ea0e4

View file

@ -169,6 +169,8 @@ boolean K_BananaBallhogCollide(mobj_t *t1, mobj_t *t2)
if (t2->player)
{
if (t2->player->flashing > 0)
return true;
// Banana snipe!
if (t1->type == MT_BANANA && t1->health > 1)