From bc781b7db877bd7250deaebe238fec8941afd41a Mon Sep 17 00:00:00 2001 From: Solenopsisbot <101841422+Solenopsisbot@users.noreply.github.com> Date: Tue, 13 May 2025 17:16:03 +1000 Subject: [PATCH] Update agent.js --- src/agent/agent.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/agent/agent.js b/src/agent/agent.js index 7106783..93864b7 100644 --- a/src/agent/agent.js +++ b/src/agent/agent.js @@ -388,7 +388,8 @@ export class Agent { if (settings.speak) { say(to_translate); } - this.bot.chat(message); + if (settings.chat_response) {this.bot.chat(message);} + sendResponseToServer(this.name, message); } }