mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-17 16:19:12 +02:00
Remove non-working API-based commands, fix bugs
This commit is contained in:
@@ -27,11 +27,11 @@ module.exports = class ServerCommand extends Command {
|
||||
.addField('❯ Region', msg.guild.region.toUpperCase(), true)
|
||||
.addField('❯ Creation Date', moment.utc(msg.guild.createdAt).format('MM/DD/YYYY h:mm A'), true)
|
||||
.addField('❯ Explicit Filter', filterLevels[msg.guild.explicitContentFilter], true)
|
||||
.addField('❯ Verification Level', verificationLevels[msg.guild.verificationLevel], true)
|
||||
.addField('❯ Owner', msg.guild.owner.user.tag, true)
|
||||
.addField('❯ Members', msg.guild.memberCount, true)
|
||||
.addField('❯ Roles', msg.guild.roles.size, true)
|
||||
.addField('❯ Channels', msg.guild.channels.filter(channel => channel.type !== 'category').size, true);
|
||||
.addField('❯ Channels', msg.guild.channels.filter(channel => channel.type !== 'category').size, true)
|
||||
.addField('❯ Verification Level', verificationLevels[msg.guild.verificationLevel], true);
|
||||
return msg.embed(embed);
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user