The first-person pane becomes an invitation, not a default

Through-your-eyes ships opt-in: the preferences toggle turns it on,
and only an explicit yes is remembered.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_015RCWSTnb1KYTPyL4GmhGnF
This commit is contained in:
Eric Wagoner
2026-08-27 15:57:32 -04:00
co-authored by Claude Fable 5
parent 37d3265c67
commit 64a6041a28
+2 -2
View File
@@ -29,7 +29,7 @@ const KEY = "wizwar-prefs";
function load(): Prefs {
const fallback: Prefs = {
art: "photo", autoGrab: false, flourishes: true, wizardName: "", color: null,
cautions: true, botTier: "adept", instantReplay: true, liveFp: true,
cautions: true, botTier: "adept", instantReplay: true, liveFp: false,
};
try {
const raw = localStorage.getItem(KEY);
@@ -44,7 +44,7 @@ function load(): Prefs {
cautions: p.cautions !== false,
botTier: p.botTier === "apprentice" || p.botTier === "archmage" ? p.botTier : "adept",
instantReplay: p.instantReplay !== false,
liveFp: p.liveFp !== false,
liveFp: p.liveFp === true,
};
} catch {
return fallback;