More formatting changes

This commit is contained in:
Daniel Odendahl Jr
2018-09-20 20:07:03 +00:00
parent d4abebd338
commit 73ed8536ca
15 changed files with 20 additions and 20 deletions
+1 -1
View File
@@ -54,7 +54,7 @@ module.exports = class TwitterCommand extends Command {
.addField(' Following', body.friends_count, true)
.addField(' Protected?', body.protected ? 'Yes' : 'No', true)
.addField(' Verified?', body.verified ? 'Yes' : 'No', true)
.addField(' Creation Date', moment.utc(body.created_at).format('MM/DD/YYYY @ hh:mm:ss A'), true)
.addField(' Creation Date', moment.utc(body.created_at).format('MM/DD/YYYY h:mm:ss A'), true)
.addField(' Latest Tweet', latest);
return msg.embed(embed);
} catch (err) {