Kill fling rings in pits

This commit is contained in:
NepDisk 2025-09-04 22:57:05 -04:00
parent 1a7b21f8db
commit e52cde9c8b

View file

@ -2263,6 +2263,14 @@ boolean P_ZMovement(mobj_t *mo)
if (!(mo->momx || mo->momy || mo->momz))
return true;
break;
case MT_FLINGRING:
// Remove flinged rings from death pits.
if (P_CheckDeathPitCollide(mo))
{
P_RemoveMobj(mo);
return false;
}
break;
case MT_BOUNCERING:
case MT_INFINITYRING:
case MT_AUTOMATICRING: