diff --git a/commands/countChars.ts b/commands/countChars.ts index 832357e..ec563e7 100644 --- a/commands/countChars.ts +++ b/commands/countChars.ts @@ -11,7 +11,7 @@ module.exports = { ), async execute(interaction) { var inputString = interaction.options.getString('string'); - await interaction.reply(countChars(inputString)); + await interaction.reply("Output: " + codeBlock("", countChars(inputString))); console.log("User " + interaction.user.tag + " ran /count_chars"); }, };