From 5c804f1a0380f10b77c6d576bb96e5774fe34bcb Mon Sep 17 00:00:00 2001 From: hippoz Date: Tue, 8 Dec 2020 01:09:26 +0200 Subject: [PATCH] actually dont replace it with a word --- libbrainlet/bridgebot.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libbrainlet/bridgebot.js b/libbrainlet/bridgebot.js index 01302d7..69b3f5a 100644 --- a/libbrainlet/bridgebot.js +++ b/libbrainlet/bridgebot.js @@ -64,7 +64,7 @@ const main = async () => { client.gateway.on('message', async (e) => { if (e.author._id === client.user._id) return; - e.content = e.content.replaceAll('@', 'attempted ping'); + e.content = e.content.replaceAll('@', ''); await discordWebhook.send(e.content, { username: e.author.username