feat(*): Clean up indentation

This commit is contained in:
2021-01-29 19:35:52 +00:00
parent 51a8fc9697
commit bbe0464dd9
+2 -2
View File
@@ -23,8 +23,8 @@ client.once('ready', () => {
client.on('message', function (message) { client.on('message', function (message) {
// If someone tags the bot // If someone tags the bot
if (message.mentions.has(client.user.id)) { if (message.mentions.has(client.user.id)) {
message.channel.send(`That's my name, don't wear it out!`); message.channel.send(`That's my name, don't wear it out!`);
}; }
// Ignore messages from the bot and that don't begin with the prefix, and do not run in DMs to bot // Ignore messages from the bot and that don't begin with the prefix, and do not run in DMs to bot
if (message.author.bot) return; if (message.author.bot) return;