mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-03-23 03:12:38 +00:00
Only return if we damaged the monitor
This commit is contained in:
parent
855e61f59e
commit
afc78fb56a
1 changed files with 4 additions and 1 deletions
|
@ -832,7 +832,10 @@ static boolean PIT_CheckThing(mobj_t *thing)
|
|||
return true;
|
||||
}
|
||||
else
|
||||
return P_DamageMobj(thing, tmthing, tmthing, 1, 0);
|
||||
{
|
||||
if (P_DamageMobj(thing, tmthing, tmthing, 1, 0))
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
// vectorise metal - done in a special case as at this point neither has the right flags for touching
|
||||
|
|
Loading…
Reference in a new issue