move to info cat
This commit is contained in:
parent
a3cbe75fed
commit
1384860bd5
@ -1,4 +1,4 @@
|
||||
const { Command } = require('../../../../interfaces/');
|
||||
const { Command } = require('../../../../interfaces');
|
||||
|
||||
class GuildCommand extends Command {
|
||||
|
||||
@ -6,7 +6,7 @@ class GuildCommand extends Command {
|
||||
|
||||
super(client, {
|
||||
name: 'guild',
|
||||
module: 'utility',
|
||||
module: 'information',
|
||||
aliases: [
|
||||
'server'
|
||||
]
|
||||
@ -40,7 +40,10 @@ class GuildCommand extends Command {
|
||||
id: guild.id,
|
||||
name: guild.name,
|
||||
region: guild.region,
|
||||
members: guild.memberCount
|
||||
members: guild.memberCount,
|
||||
boosters: guild.premiumSubscriptionCount,
|
||||
tier: guild.premiumTier,
|
||||
shard: guild.shardID
|
||||
}),
|
||||
thumbnail: {
|
||||
url: guild.iconURL()
|
@ -1,4 +1,4 @@
|
||||
const { Command } = require('../../../../interfaces/');
|
||||
const { Command } = require('../../../../interfaces');
|
||||
const similarity = require('similarity');
|
||||
|
||||
class UserCommand extends Command {
|
||||
@ -7,7 +7,7 @@ class UserCommand extends Command {
|
||||
|
||||
super(client, {
|
||||
name: 'user',
|
||||
module: 'utility',
|
||||
module: 'information',
|
||||
description: 'Display information about user.',
|
||||
guildOnly: true,
|
||||
arguments: [
|
Loading…
Reference in New Issue
Block a user