From e82a1322f26a0ce293a81d95365bb6dac41881ca Mon Sep 17 00:00:00 2001 From: dragonfire535 Date: Sun, 5 Mar 2017 13:15:43 -0500 Subject: [PATCH] Move some things around in Wattpad Command --- commands/search/wattpad.js | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/commands/search/wattpad.js b/commands/search/wattpad.js index e374a37e..758dd3fd 100644 --- a/commands/search/wattpad.js +++ b/commands/search/wattpad.js @@ -45,16 +45,14 @@ class WattpadCommand extends commando.Command { response.stories[0].user, true) .addField('**Parts:**', response.stories[0].numParts, true) - .addField('**Story ID:**', - response.stories[0].id, true) + .addField('**Created On:**', + response.stories[0].createDate, true) .addField('**Votes:**', response.stories[0].voteCount, true) .addField('**Reads:**', response.stories[0].readCount, true) .addField('**Comments:**', - response.stories[0].commentCount, true) - .addField('**Created On:**', - response.stories[0].createDate, true); + response.stories[0].commentCount, true); message.channel.sendEmbed(embed).catch(console.error); }).catch(function (err) { message.channel.sendMessage(":x: Error! Book not Found!");