Added placeholder and dice config options

This commit is contained in:
munimunigamer
2025-12-25 18:27:28 -08:00
parent 04bd314da2
commit c73260b2c6
6 changed files with 47 additions and 2 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 (presentCharacters.length === 0) {
// If no characters parsed, show a placeholder editable card (if enabled)
if (presentCharacters.length === 0 && extensionSettings.showPlaceholderCharacterCard) {
debugLog('[RPG Thoughts] ⚠ No characters parsed - showing placeholder card');
// Get default character portrait
let defaultPortrait = FALLBACK_AVATAR_DATA_URI;