mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-17 21:40:51 +02:00
IGDB Command, Minor changes
This commit is contained in:
@@ -31,7 +31,7 @@ module.exports = class EmojiInfoCommand extends Command {
|
||||
emoji.id, true)
|
||||
.addField('❯ Creation Date',
|
||||
emoji.createdAt.toDateString(), true)
|
||||
.addField('❯ External',
|
||||
.addField('❯ External?',
|
||||
emoji.managed ? 'Yes' : 'No', true);
|
||||
return msg.embed(embed);
|
||||
}
|
||||
|
||||
@@ -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');
|
||||
|
||||
Reference in New Issue
Block a user