From e478fa830e5b1e4c42870fadad1954541decb65d Mon Sep 17 00:00:00 2001 From: toasterbabe Date: Sat, 7 Oct 2017 14:45:37 +0100 Subject: [PATCH] Remove the MF2_DONTDRAW set - this is effectively already handled by MF2_LINKDRAW. --- src/p_user.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/p_user.c b/src/p_user.c index fe5475276..a2e1f4111 100644 --- a/src/p_user.c +++ b/src/p_user.c @@ -10703,11 +10703,6 @@ void P_PlayerAfterThink(player_t *player) A_CapeChase(player->followmobj); break; } - - if (player->followmobj && !P_MobjWasRemoved(player->followmobj)) - { - player->followmobj->flags2 = (player->followmobj->flags2 & ~MF2_DONTDRAW)|(player->mo->flags2 & MF2_DONTDRAW); - } } } }