mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-03-02 17:31:07 +00:00
Obj_SPBEradicateCapsules: Only autodestroy if the type is KITEM_SPB
This commit is contained in:
parent
fd7de3c604
commit
7703c1999f
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue