Traitor: true/false -> yes/no

This commit is contained in:
PilkeySEK
2025-02-10 16:45:00 +01:00
parent 67b9c869cf
commit 39908531f9
+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>