This commit is contained in:
Daniel Odendahl Jr
2019-04-14 20:37:36 +00:00
parent d9973a5a39
commit 51de15667a
+1 -1
View File
@@ -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);
}