Do death animation even when MF2_DONTDRAW is set

This commit is contained in:
MascaraSnake 2019-06-15 22:29:30 +02:00
parent 71a25eef92
commit 774ccad401
2 changed files with 29 additions and 29 deletions

View File

@ -3026,6 +3026,9 @@ static void P_KillPlayer(player_t *player, mobj_t *source, INT32 damage)
P_ResetPlayer(player);
if (!player->spectator)
player->mo->flags2 &= ~MF2_DONTDRAW;
P_SetPlayerMobjState(player->mo, player->mo->info->deathstate);
if (gametype == GT_CTF && (player->gotflag & (GF_REDFLAG|GF_BLUEFLAG)))
{

View File

@ -7563,8 +7563,6 @@ void P_MobjThinker(mobj_t *mobj)
break;
case MT_PLAYER:
/// \todo Have the player's dead body completely finish its animation even if they've already respawned.
if (!(mobj->flags2 & MF2_DONTDRAW))
{
if (!mobj->fuse)
{ // Go away.
/// \todo Actually go ahead and remove mobj completely, and fix any bugs and crashes doing this creates. Chasecam should stop moving, and F12 should never return to it.
@ -7594,7 +7592,6 @@ void P_MobjThinker(mobj_t *mobj)
else
P_SetObjectMomZ(mobj, -2 * FRACUNIT / 3, true);
}
}
break;
default:
break;