diff --git a/structure/client/components/commands/utility/Guild.js b/structure/client/components/commands/information/Guild.js similarity index 81% rename from structure/client/components/commands/utility/Guild.js rename to structure/client/components/commands/information/Guild.js index 0d986a7..442b17c 100644 --- a/structure/client/components/commands/utility/Guild.js +++ b/structure/client/components/commands/information/Guild.js @@ -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() diff --git a/structure/client/components/commands/utility/User.js b/structure/client/components/commands/information/User.js similarity index 97% rename from structure/client/components/commands/utility/User.js rename to structure/client/components/commands/information/User.js index a6bfdd9..ffff713 100644 --- a/structure/client/components/commands/utility/User.js +++ b/structure/client/components/commands/information/User.js @@ -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: [