diff --git a/src/commands/utility/file.js b/src/commands/utility/file.js index 6e07e43..4e4bb9e 100644 --- a/src/commands/utility/file.js +++ b/src/commands/utility/file.js @@ -27,7 +27,7 @@ function notEmpty(str) { } function shorten(str) { - return str.length <= 20 ? str : str.slice(0, 17) + "..."; + return str.length <= 20 ? str : `[${str.slice(0, 17)}...](${str})`; } const emojis = JSON.parse(readFileSync("config/emojis.json"));