Merge branch 'main' into auto-image-generation

This commit is contained in:
Spicy Marinara
2025-12-26 10:00:29 +01:00
committed by GitHub
7 changed files with 76 additions and 4 deletions
+2 -2
View File
@@ -454,8 +454,8 @@ export function renderThoughts() {
debugLog('[RPG Thoughts] ==================== BUILDING HTML ====================');
debugLog('[RPG Thoughts] Starting HTML generation for', presentCharacters.length + ' characters');
// If no characters parsed, show a placeholder editable card
if (presentCharacters.length === 0) {
// If no characters parsed, show a placeholder editable card (if narrator mode is disabled)
if (presentCharacters.length === 0 && !extensionSettings.narratorMode) {
debugLog('[RPG Thoughts] ⚠ No characters parsed - showing placeholder card');
// Get default character portrait
let defaultPortrait = FALLBACK_AVATAR_DATA_URI;