Clarify unnamed Pi-Rats in admin panel

This commit is contained in:
2026-07-10 12:21:07 -07:00
parent 1a4bc86139
commit feb595af16
3 changed files with 16 additions and 3 deletions

View File

@@ -6,10 +6,17 @@
// - Add a CHANGELOG entry only when a commit changes something players can
// see. Skip refactors, tests, and tooling. Keep wording player-facing.
export const VERSION = 14;
export const VERSION = 15;
// Newest first. Each entry: { version, date: 'YYYY-MM-DD', changes: [string, ...] }.
export const CHANGELOG = [
{
version: 15,
date: '2026-07-10',
changes: [
'The Admin Panel now clearly marks Pi-Rats whose character identity has not been chosen yet.',
],
},
{
version: 14,
date: '2026-07-10',

View File

@@ -152,7 +152,13 @@
<tbody>
{#each data.players as p}
<tr>
<td>{p.name}</td>
<td>
{#if p.avatar_smell}
{p.name}
{:else}
<span class="text-muted">Not chosen yet</span>
{/if}
</td>
<td>{p.player_name || p.name}</td>
<td>
{#if p.role === 'deep'} 🌊 Deep