mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
P_PushSpecialLine: It's possible for tm.blockingline to be NULL but the player be blocked.
This commit is contained in:
parent
d2d7421072
commit
65c0860a9d
1 changed files with 6 additions and 0 deletions
|
|
@ -2242,6 +2242,12 @@ void P_PushSpecialLine(line_t *line, mobj_t *thing)
|
|||
return;
|
||||
}
|
||||
|
||||
if (line == NULL)
|
||||
{
|
||||
// Invalid line.
|
||||
return;
|
||||
}
|
||||
|
||||
player = thing->player;
|
||||
|
||||
if (player != NULL)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue