Remove any @ symbol to remove spam pings

This commit is contained in:
Raven Scott 2023-05-08 15:42:15 +02:00
parent 012566e93c
commit c7d8735c8a
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()