From a442c5cbe8a229c1a7b8189affec9a6a5b75ec1d Mon Sep 17 00:00:00 2001 From: SileNce5k Date: Sat, 10 Jul 2021 17:37:37 +0200 Subject: [PATCH] add 'added' to the end of sendText string --- util/addCustomCommand.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;