diff --git a/commands/Utility/reload.js b/commands/Utility/reload.js index 976e4fb..c1a89be 100644 --- a/commands/Utility/reload.js +++ b/commands/Utility/reload.js @@ -4,7 +4,7 @@ exports.run = async (client, message, args, level) => { let response = await client.unloadCommand(args[0]); if (response) return message.reply(`Error Unloading: ${response}`); - response = client.loadCommand(command.help.name); + response = client.loadCommand(`${command.help.name}`); if (response) return message.reply(`Error Loading: ${response}`); message.reply(`command \`${command.help.name}\` has been reloaded successfully.`); @@ -20,6 +20,6 @@ exports.conf = { exports.help = { name: "reload", category: "System", - description: "Reloads a command that\"s been modified.", + description: "Reloads a command that\'s been modified.", usage: "reload [command]" }; \ No newline at end of file