mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-01-30 13:10:55 +00:00
Don't fuck with the fuse if it's negative
This commit is contained in:
parent
fce1313517
commit
07f9ddc45a
1 changed files with 2 additions and 0 deletions
|
@ -7986,6 +7986,8 @@ static void P_MobjSceneryThink(mobj_t *mobj)
|
||||||
P_RemoveMobj(mobj);
|
P_RemoveMobj(mobj);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
if (mobj->fuse < 0)
|
||||||
|
return;
|
||||||
if ((--mobj->fuse) < 6)
|
if ((--mobj->fuse) < 6)
|
||||||
mobj->frame = (mobj->frame & ~FF_TRANSMASK) | ((10 - (mobj->fuse*2)) << (FF_TRANSSHIFT));
|
mobj->frame = (mobj->frame & ~FF_TRANSMASK) | ((10 - (mobj->fuse*2)) << (FF_TRANSSHIFT));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue