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
+3 -3
View File
@@ -331,8 +331,8 @@ async function initUI() {
updateSectionVisibility();
});
$('#rpg-toggle-placeholder-card').on('change', function() {
extensionSettings.showPlaceholderCharacterCard = $(this).prop('checked');
$('#rpg-toggle-narrator-mode').on('change', function() {
extensionSettings.narratorMode = $(this).prop('checked');
saveSettings();
});
@@ -493,7 +493,7 @@ async function initUI() {
$('#rpg-toggle-user-stats').prop('checked', extensionSettings.showUserStats);
$('#rpg-toggle-info-box').prop('checked', extensionSettings.showInfoBox);
$('#rpg-toggle-thoughts').prop('checked', extensionSettings.showCharacterThoughts);
$('#rpg-toggle-placeholder-card').prop('checked', extensionSettings.showPlaceholderCharacterCard);
$('#rpg-toggle-narrator-mode').prop('checked', extensionSettings.narratorMode);
$('#rpg-toggle-inventory').prop('checked', extensionSettings.showInventory);
$('#rpg-toggle-quests').prop('checked', extensionSettings.showQuests);
$('#rpg-toggle-thoughts-in-chat').prop('checked', extensionSettings.showThoughtsInChat);