Line 458: Only do disable operation if MFE_TRACERANGLE is set

This commit is contained in:
mazmazz 2018-11-04 16:48:18 -05:00
parent cf6a6991cb
commit 4fc335a26b
1 changed files with 1 additions and 1 deletions

View File

@ -3784,7 +3784,7 @@ static void P_ProcessLineSpecial(line_t *line, mobj_t *mo, sector_t *callsec)
break;
case 458: // Stop tracking mobj angle to point
if (mo)
if (mo && (mo->eflags & MFE_TRACERANGLE))
{
mo->eflags &= ~MFE_TRACERANGLE;
P_SetTarget(&mo->tracer, NULL);