diff --git a/util/addCustomCommand.js b/util/addCustomCommand.js index 1ed9f21..3ac6417 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 with the name "${customName}"` + sendText = `New custom command with the name "${customName}" added` } fs.writeFileSync(customPath, JSON.stringify(customCommands, null, 4)) return sendText;