mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-05-08 01:41:45 +00:00
Only return if we damaged the monitor
This commit is contained in:
parent
5b715fa11a
commit
821e1cf618
1 changed files with 4 additions and 1 deletions
|
|
@ -832,7 +832,10 @@ static boolean PIT_CheckThing(mobj_t *thing)
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
else
|
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
|
// vectorise metal - done in a special case as at this point neither has the right flags for touching
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue