From c7d8735c8abaa8b4bd4a06511a844d0f72a28eb2 Mon Sep 17 00:00:00 2001 From: Raven Scott Date: Mon, 8 May 2023 15:42:15 +0200 Subject: [PATCH] Remove any @ symbol to remove spam pings --- llamabot.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llamabot.js b/llamabot.js index dee5824..e70536b 100644 --- a/llamabot.js +++ b/llamabot.js @@ -161,7 +161,7 @@ client.on('messageCreate', async (message) => { } } else { // We are good to go, send the response - await message.channel.send(response); + await message.channel.send(response.replace("@", "")); } setPresenceOnline()