mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-04-05 01:41:39 +00:00
Fix player afterimages not using correct angle on bounce pads or spinout
This commit is contained in:
parent
a81eff0884
commit
c815e3b791
1 changed files with 5 additions and 1 deletions
|
@ -1543,7 +1543,11 @@ mobj_t *P_SpawnGhostMobj(mobj_t *mobj)
|
|||
ghost->color = mobj->color;
|
||||
ghost->colorized = mobj->colorized; // Kart: they should also be colorized if their origin is
|
||||
|
||||
ghost->angle = mobj->angle;
|
||||
if (mobj->player)
|
||||
ghost->angle = mobj->player->frameangle;
|
||||
else
|
||||
ghost->angle = mobj->angle;
|
||||
|
||||
ghost->sprite = mobj->sprite;
|
||||
ghost->frame = mobj->frame;
|
||||
ghost->tics = -1;
|
||||
|
|
Loading…
Reference in a new issue