diff --git a/public/script.js b/public/script.js
index 185784f39..977a47e7b 100644
--- a/public/script.js
+++ b/public/script.js
@@ -1461,6 +1461,7 @@ function sendSystemMessage(type, text, extra = {}) {
if (type == system_message_types.HELP) {
newMessage.mes += getSlashCommandsHelp();
+ newMessage.mes += `
Still got questions left? The Official SillyTavern Documentation Website has much more information!`;
}
if (!newMessage.extra) {
diff --git a/public/scripts/extensions/backgrounds/index.js b/public/scripts/extensions/backgrounds/index.js
index e5d224d1d..d818b6437 100644
--- a/public/scripts/extensions/backgrounds/index.js
+++ b/public/scripts/extensions/backgrounds/index.js
@@ -166,5 +166,5 @@ $(document).ready(function () {
setInterval(moduleWorker, UPDATE_INTERVAL);
registerSlashCommand('lock', onLockBackgroundClick, [], " – locks a background for the currently selected chat", true, true);
registerSlashCommand('unlock', onUnlockBackgroundClick, [], ' – unlocks a background for the currently selected chat', true, true);
- registerSlashCommand('autobg', autoBackgroundCommand, ['bgauto'], ' – automatically changes the background based on the chat context', true, true);
+ registerSlashCommand('autobg', autoBackgroundCommand, ['bgauto'], ' – automatically changes the background based on the chat context using the AI request prompt', true, true);
});