mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-02-21 11:21:11 +00:00
Fix skin-only emblems on emblem radar
This commit is contained in:
parent
cf228757a1
commit
e06956a53b
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue