Obj_SPBEradicateCapsules: Only autodestroy if the type is KITEM_SPB

This commit is contained in:
toaster 2023-12-22 19:30:22 +00:00
parent fd7de3c604
commit 7703c1999f

View file

@ -90,7 +90,7 @@ void Obj_SPBEradicateCapsules(void)
if (mo->type != MT_ITEMCAPSULE)
continue;
if (!mo->health || mo->fuse)
if (!mo->health || mo->fuse || mo->threshold != KITEM_SPB)
continue;
P_KillMobj(mo, NULL, NULL, DMG_NORMAL);