Guard All Util Commands

This commit is contained in:
Daniel Odendahl Jr
2017-05-28 14:04:48 +00:00
parent 0456e9cc5f
commit c5f29c59c5
4 changed files with 7 additions and 3 deletions
+2 -1
View File
@@ -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
});
}
+2 -1
View File
@@ -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
});
}
+1
View File
@@ -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',
+2 -1
View File
@@ -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
});
}