Credibility pass: the reel's scars sanded, the veil finally hung
Three blind reviews over the first-person arc, every finding verified against the source. History-narrating comments made timeless or cut; the stacked BUDDY comment collapsed to one voice. Dead code out: the orphaned FACE copy, the DIR_ANGLE duplicate, the dead loop-counter poke, the impossible-state sentinel. The never-produced "warp" hit kind resolved the right way — warp mouths now hang a translucent veil of the painted warp texture, so art that never rendered finally does. Types tightened (SlabStrike named once, ShareData rides CatchUpStep, botTier loses its casts), the gallery reads MATERIALS instead of a hand-copied list, the chronicle resets through one helper, a superseded share mint rejects instead of stranding, and the conjured safe gains the growth key its siblings had. Tests lose a triple assignment, a tautology, and two self-swallowing regex alternatives. The sprite spec — which still told the artist to paint for additive compositing the renderer no longer uses — now describes the renderer that exists. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Fable 5
parent
88994f18a2
commit
7a32370ccb
@@ -161,7 +161,7 @@
|
||||
/** Leafing through the face-up discard pile. */
|
||||
let showDiscards = $state(false);
|
||||
let chatDraft = $state("");
|
||||
let botTier = $state<string>(prefs.botTier);
|
||||
let botTier = $state<typeof prefs.botTier>(prefs.botTier);
|
||||
/** Card whose official FAQ rulings are open. */
|
||||
let faqCardId = $state<string | null>(null);
|
||||
/** A discard-pile card enlarged above the pile. */
|
||||
@@ -1395,9 +1395,9 @@
|
||||
</label>
|
||||
<div class="pref-row">
|
||||
<span>Automatons default to</span>
|
||||
{#each ["apprentice", "adept", "archmage"] as t (t)}
|
||||
{#each ["apprentice", "adept", "archmage"] as const as t (t)}
|
||||
<button class="stamp tiny" class:lit={prefs.botTier === t}
|
||||
onclick={() => { setPref("botTier", t as typeof prefs.botTier); botTier = t; }}>{t}</button>
|
||||
onclick={() => { setPref("botTier", t); botTier = t; }}>{t}</button>
|
||||
{/each}
|
||||
</div>
|
||||
<label class="pref-row">
|
||||
@@ -1829,7 +1829,7 @@
|
||||
<span class="bot-row">
|
||||
<span class="bot-label">⚙ seat a</span>
|
||||
<select class="tier-pick" bind:value={botTier} aria-label="automaton difficulty"
|
||||
onchange={() => setPref("botTier", botTier as typeof prefs.botTier)}>
|
||||
onchange={() => setPref("botTier", botTier)}>
|
||||
<option value="apprentice">apprentice</option>
|
||||
<option value="adept">adept</option>
|
||||
<option value="archmage">archmage</option>
|
||||
|
||||
Reference in New Issue
Block a user