Skip to content

Commit 82130fa

Browse files
committed
added always show overlay
1 parent d3d0353 commit 82130fa

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

ui/src/components/overlay.svelte

+1-3
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,7 @@
6060
{#if $RADIODATA.onRadio}
6161
<div class="w-[15vw] absolute z-[1000] text-right select-none" style="top: {$RADIODATA.userData.playerlist.coords.y}px; right: {$RADIODATA.userData.playerlist.coords.x}px;cursor:{$SHOW? 'move':'no-drop'}" use:dragMe>
6262
{#each Object.entries($PLAYERLIST) as [id, player], index (id)}
63-
{#if player.isTalking || $SHOWFORCEPLAYERLIST}
64-
<div class="text-[1.7vh] font-bold px-2 text-white">{player.name}</div>
65-
{/if}
63+
<div class="text-[1.7vh] font-bold px-2" style="color: {player.isTalking? "white":"rgb(1, 176, 240)"}">{player.name}</div>
6664
{/each}
6765
</div>
6866
{/if}

0 commit comments

Comments
 (0)