mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-02-06 16:31:47 +00:00
Line 458: Only do disable operation if MFE_TRACERANGLE is set
This commit is contained in:
parent
cf6a6991cb
commit
4fc335a26b
1 changed files with 1 additions and 1 deletions
|
@ -3784,7 +3784,7 @@ static void P_ProcessLineSpecial(line_t *line, mobj_t *mo, sector_t *callsec)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 458: // Stop tracking mobj angle to point
|
case 458: // Stop tracking mobj angle to point
|
||||||
if (mo)
|
if (mo && (mo->eflags & MFE_TRACERANGLE))
|
||||||
{
|
{
|
||||||
mo->eflags &= ~MFE_TRACERANGLE;
|
mo->eflags &= ~MFE_TRACERANGLE;
|
||||||
P_SetTarget(&mo->tracer, NULL);
|
P_SetTarget(&mo->tracer, NULL);
|
||||||
|
|
Loading…
Reference in a new issue