Remove any @ symbol to remove spam pings

This commit is contained in:
Raven Scott 2023-05-08 15:42:15 +02:00 committed by MrTuxedo
parent f4e97d9710
commit 63a4486745
1 changed files with 1 additions and 1 deletions

View File

@ -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()