mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-15 09:11:48 +00:00
Ensure followmobj ghost exists before applying fuse
This commit is contained in:
parent
51b640ad5a
commit
b874da5229
1 changed files with 1 additions and 3 deletions
|
@ -12231,12 +12231,10 @@ void P_PlayerThink(player_t *player)
|
|||
{
|
||||
mobj_t *ghost = P_SpawnGhostMobj(player->mo); // Spawns afterimages
|
||||
ghost->fuse = 2; // Makes the images fade quickly
|
||||
if (ghost->tracer)
|
||||
{
|
||||
if (ghost->tracer && !P_MobjWasRemoved(ghost->tracer))
|
||||
ghost->tracer->fuse = ghost->fuse;
|
||||
}
|
||||
}
|
||||
}
|
||||
else if (dashmode)
|
||||
{
|
||||
if (dashmode >= DASHMODE_THRESHOLD) // catch getting the flag!
|
||||
|
|
Loading…
Reference in a new issue