Merge pull request #14 from PilkeySEK/traitor-yes-no

Make the traitor field in the player info panel display as yes/no instead of true/false
This commit is contained in:
evanpelle
2025-02-10 07:52:29 -08:00
committed by GitHub
+1 -1
View File
@@ -182,7 +182,7 @@ export class PlayerPanel extends LitElement implements Layer {
<div class="flex flex-col gap-1">
<div class="text-white text-opacity-80 text-sm px-2">Traitor</div>
<div class="bg-opacity-50 bg-gray-700 rounded p-2 text-white">
${other.isTraitor()}
${other.isTraitor() ? "yes" : "no"}
</div>
</div>