Fix them again

This commit is contained in:
Daniel Odendahl Jr
2017-08-06 15:02:24 +00:00
parent 7c77589c35
commit 9e2b3e65ea
8 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -40,7 +40,7 @@ module.exports = class BulbapediaCommand extends Command {
.setColor(0x3E7614)
.setTitle(body.query.pages[0].title)
.setAuthor('Bulbapedia', 'https://i.imgur.com/09eYo5T.png')
.setDescription(body.query.pages[0].extract.substr(0, 2048).replace(/[\n]/g, '\n\n'));
.setDescription(body.query.pages[0].extract.substr(0, 2047).replace(/[\n]/g, '\n\n'));
return msg.embed(embed);
}
};