From b49672e3f91da252ca1cd882e0fb1dc75f1b5ccc Mon Sep 17 00:00:00 2001
From: Steel Titanium <steeltitanium1@gmail.com>
Date: Tue, 24 Dec 2019 17:44:06 -0500
Subject: [PATCH] Change this condition a bit

---
 src/p_inter.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/p_inter.c b/src/p_inter.c
index 5ec1161ea8..52b84059ff 100644
--- a/src/p_inter.c
+++ b/src/p_inter.c
@@ -3439,13 +3439,13 @@ void P_SpecialStageDamage(player_t *player, mobj_t *inflictor, mobj_t *source)
 			}
 		}
 
-		if (inflictor->type == MT_LHRT)
-			return;
-
 		if (source->player->ctfteam == player->ctfteam)
 			return;
 	}
 
+	if (inflictor->type == MT_LHRT)
+		return;
+
 	if (player->powers[pw_shield] || player->bot)  //If One-Hit Shield
 	{
 		P_RemoveShield(player);
-- 
GitLab