Clarify unnamed Pi-Rats in admin panel
This commit is contained in:
@@ -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',
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user