From 51de15667a9b92fdf78e94c77173e8c5fda8db93 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Sun, 14 Apr 2019 20:37:36 +0000 Subject: [PATCH] Fix --- commands/random/waifu.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/random/waifu.js b/commands/random/waifu.js index 4ff9ad22..15a763a9 100644 --- a/commands/random/waifu.js +++ b/commands/random/waifu.js @@ -25,7 +25,7 @@ module.exports = class WaifuCommand extends Command { const num = Math.floor(Math.random() * 100000); const { text } = await request.get(`https://www.thiswaifudoesnotexist.net/snippet-${num}.txt`); const embed = new MessageEmbed() - .setDescription(shorten(text)) + .setDescription(shorten(text, 1000)) .setThumbnail(`https://www.thiswaifudoesnotexist.net/example-${num}.jpg`); return msg.embed(embed); }