replaced disable placeholder card with Narrator mode (changes prompt a bit to support open ended rpgs/narrator cards that don't have defined characters better)

This commit is contained in:
munimunigamer
2025-12-26 01:31:16 -06:00
parent c73260b2c6
commit d10d4e876f
6 changed files with 43 additions and 14 deletions
+2 -2
View File
@@ -441,8 +441,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 enabled)
if (presentCharacters.length === 0 && extensionSettings.showPlaceholderCharacterCard) {
// 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;