From e06956a53b06872b4eb2c9bd184177c3b1322b77 Mon Sep 17 00:00:00 2001
From: Sally Coolatta <tehrealsalt@gmail.com>
Date: Wed, 16 Nov 2022 12:40:46 -0500
Subject: [PATCH] Fix skin-only emblems on emblem radar

---
 src/st_stuff.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/st_stuff.c b/src/st_stuff.c
index 42f1f89ec5..59c50b168c 100644
--- a/src/st_stuff.c
+++ b/src/st_stuff.c
@@ -2569,7 +2569,7 @@ static boolean ST_doItemFinderIconsAndSound(void)
 
 		emblems[stemblems++] = i;
 
-		if (!P_EmblemWasCollected(i))
+		if (!P_EmblemWasCollected(i) && P_CanPickupEmblem(stplyr, i))
 		{
 			++stunfound;
 		}
@@ -2603,7 +2603,7 @@ static boolean ST_doItemFinderIconsAndSound(void)
 		{
 			if (mo2->health == emblems[i] + 1)
 			{
-				if (P_EmblemWasCollected(emblems[i]))
+				if (P_EmblemWasCollected(emblems[i]) || !P_CanPickupEmblem(stplyr, emblems[i]))
 					break;
 
 				soffset = (i * 20) - ((stemblems - 1) * 10);
-- 
GitLab