Format better

This commit is contained in:
Daniel Odendahl Jr
2018-09-20 17:21:42 +00:00
parent 78c51d5898
commit 022121df2b
19 changed files with 26 additions and 30 deletions
+1 -1
View File
@@ -38,7 +38,7 @@ module.exports = class ChannelInfoCommand extends Command {
.addField(' NSFW', channel.nsfw ? 'Yes' : 'No', true)
.addField(' Category', channel.parent ? channel.parent.name : 'None', true)
.addField(' Type', types[channel.type], true)
.addField(' Creation Date', moment.utc(channel.createdAt).format('MMM Do, YYYY [at] hh:mm:ss A'), true)
.addField(' Creation Date', moment.utc(channel.createdAt).format('MM/DD/YYYY @ hh:mm:ss A'), true)
.addField(' Topic', channel.topic || 'None');
return msg.embed(embed);
}