diff --git a/src/p_user.c b/src/p_user.c index 26abc0220b24617d3dd98531b383553ef58e5c2e..60a0f5106c95cd4421c20556f662b7f95f4dec4b 100644 --- a/src/p_user.c +++ b/src/p_user.c @@ -1,4 +1,3 @@ - // SONIC ROBO BLAST 2 //----------------------------------------------------------------------------- // Copyright (C) 1993-1996 by id Software, Inc. @@ -3108,7 +3107,7 @@ static void P_DoPlayerHeadSigns(player_t *player) if (G_TagGametype()) { // If you're "IT", show a big "IT" over your head for others to see. - if (player->pflags & PF_TAGIT && P_IsLocalPlayer(player)) + if (player->pflags & PF_TAGIT && !P_IsLocalPlayer(player)) { mobj_t* it = P_SpawnMobjFromMobj(player->mo, 0, 0, 0, MT_TAG); it->x = player->mo->x; @@ -3134,7 +3133,7 @@ static void P_DoPlayerHeadSigns(player_t *player) { // Spawn a got-flag message over the head of the player that // has it (but not on your own screen if you have the flag). - if (splitscreen || player != &players[consoleplayer] || true) + if (splitscreen || player != &players[consoleplayer]) { fixed_t zofs; mobj_t *sign;