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.`); } };