diff --git a/commands/util/info.js b/commands/util/info.js index 0a82d22c..ce0dac3b 100644 --- a/commands/util/info.js +++ b/commands/util/info.js @@ -12,7 +12,8 @@ module.exports = class InfoCommand extends Command { aliases: ['information', 'stats'], group: 'util', memberName: 'info', - description: 'Gives some bot info.' + description: 'Gives some bot info.', + guarded: true }); } diff --git a/commands/util/invite.js b/commands/util/invite.js index 4591fe23..78a6c702 100644 --- a/commands/util/invite.js +++ b/commands/util/invite.js @@ -7,7 +7,8 @@ module.exports = class InviteCommand extends Command { name: 'invite', group: 'util', memberName: 'invite', - description: 'Sends you an invite for the bot and an invite to my server.' + description: 'Sends you an invite for the bot and an invite to my server.', + guarded: true }); } diff --git a/commands/util/shard-info.js b/commands/util/shard-info.js index a9ee34b2..200bbaea 100644 --- a/commands/util/shard-info.js +++ b/commands/util/shard-info.js @@ -11,6 +11,7 @@ module.exports = class ShardInfoCommand extends Command { group: 'util', memberName: 'shard-info', description: 'Gives some bot info for the Shard you specify.', + guarded: true, args: [ { key: 'shard', diff --git a/commands/util/uptime.js b/commands/util/uptime.js index eb2a7fc6..96ee3810 100644 --- a/commands/util/uptime.js +++ b/commands/util/uptime.js @@ -8,7 +8,8 @@ module.exports = class UptimeCommand extends Command { name: 'uptime', group: 'util', memberName: 'uptime', - description: 'Displays how long the bot has been active on this shard.' + description: 'Displays how long the bot has been active on this shard.', + guarded: true }); }