mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-02-22 03:41:45 +00:00
Merge branch 'issue912a' into 'next'
Fixes Issue #912 Closes #912 See merge request STJr/SRB2!1909
This commit is contained in:
commit
1dfb8ed4c3
1 changed files with 5 additions and 0 deletions
|
@ -11281,6 +11281,11 @@ static void P_DoTailsOverlay(player_t *player, mobj_t *tails)
|
||||||
tails->y = player->mo->y + P_ReturnThrustY(tails, tails->angle, FixedMul(backwards, tails->scale));
|
tails->y = player->mo->y + P_ReturnThrustY(tails, tails->angle, FixedMul(backwards, tails->scale));
|
||||||
tails->z = player->mo->z + zoffs;
|
tails->z = player->mo->z + zoffs;
|
||||||
P_SetThingPosition(tails);
|
P_SetThingPosition(tails);
|
||||||
|
|
||||||
|
if (player->mo->flags2 & MF2_SHADOW)
|
||||||
|
tails->flags2 |= MF2_SHADOW;
|
||||||
|
else
|
||||||
|
tails->flags2 &= ~MF2_SHADOW;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Metal Sonic's jet fume
|
// Metal Sonic's jet fume
|
||||||
|
|
Loading…
Reference in a new issue