From 9ed5aab2e22d98afef85f2b0a347749e2b67c8ab Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Mon, 1 Jun 2020 23:45:27 -0400 Subject: [PATCH] Fix lint --- commands/util/uses.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/commands/util/uses.js b/commands/util/uses.js index 00bf0169..d0d3d22e 100644 --- a/commands/util/uses.js +++ b/commands/util/uses.js @@ -1,6 +1,4 @@ const Command = require('../../structures/Command'); -const { MessageEmbed } = require('discord.js'); -const { embedURL } = require('../../util/Util'); module.exports = class UsesCommand extends Command { constructor(client) { @@ -21,7 +19,7 @@ module.exports = class UsesCommand extends Command { } run(msg, { command }) { - if (command.uses === undefined) return msg.say('This command\'s usage stats aren\'t being tracked.'); + if (command.uses === undefined) return msg.reply('That command\'s usage stats aren\'t being tracked.'); return msg.say(`The \`${command.name}\` command has been used **${command.uses}** times.`); } };