diff --git a/util/addCustomCommand.js b/util/addCustomCommand.js index c25bd7c..1ed9f21 100644 --- a/util/addCustomCommand.js +++ b/util/addCustomCommand.js @@ -18,7 +18,7 @@ module.exports = function(customName, customMessage, author){ "customName": customName, "customMessage": customMessage, "author": author } customCommands.push(newCustomCommand) - sendText = "New custom command has been added." + sendText = `New custom command with the name "${customName}"` } fs.writeFileSync(customPath, JSON.stringify(customCommands, null, 4)) return sendText;