IGDB Command, Minor changes

This commit is contained in:
Daniel Odendahl Jr
2017-12-12 04:06:26 +00:00
parent dd1a980ce9
commit 8bcbb3902c
13 changed files with 101 additions and 26 deletions
+2 -2
View File
@@ -35,9 +35,9 @@ module.exports = class RoleInfoCommand extends Command {
role.hexColor.toUpperCase(), true)
.addField(' Creation Date',
role.createdAt.toDateString(), true)
.addField(' Hoisted',
.addField(' Hoisted?',
role.hoist ? 'Yes' : 'No', true)
.addField(' Mentionable',
.addField(' Mentionable?',
role.mentionable ? 'Yes' : 'No', true)
.addField(' Permissions',
perms.map(perm => permissions[perm]).join(', ') || 'None');