diff --git a/libbrainlet/bridgebot.js b/libbrainlet/bridgebot.js index bf77764..01302d7 100644 --- a/libbrainlet/bridgebot.js +++ b/libbrainlet/bridgebot.js @@ -64,6 +64,8 @@ const main = async () => { client.gateway.on('message', async (e) => { if (e.author._id === client.user._id) return; + e.content = e.content.replaceAll('@', 'attempted ping'); + await discordWebhook.send(e.content, { username: e.author.username });