mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-26 20:11:47 +00:00
Do not continue to run thinker for MT_MAGICIANBOX if removed by running out of lifespan
This commit is contained in:
parent
79401a888f
commit
a4a74a7d2f
1 changed files with 2 additions and 2 deletions
|
|
@ -7976,7 +7976,7 @@ static boolean P_MobjRegularThink(mobj_t *mobj)
|
||||||
if (mobj->extravalue2 == 0)
|
if (mobj->extravalue2 == 0)
|
||||||
{
|
{
|
||||||
P_RemoveMobj(mobj);
|
P_RemoveMobj(mobj);
|
||||||
break;
|
return false;
|
||||||
}
|
}
|
||||||
else if (mobj->extravalue2 < TICRATE/3)
|
else if (mobj->extravalue2 < TICRATE/3)
|
||||||
{
|
{
|
||||||
|
|
@ -8009,7 +8009,7 @@ static boolean P_MobjRegularThink(mobj_t *mobj)
|
||||||
if (mobj->target->player->hyudorotimer)
|
if (mobj->target->player->hyudorotimer)
|
||||||
{
|
{
|
||||||
P_RemoveMobj(mobj);
|
P_RemoveMobj(mobj);
|
||||||
break;
|
return false;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue