diff options
Diffstat (limited to 'src/commands/utility')
| -rw-r--r-- | src/commands/utility/memorystats.ts | 2 | ||||
| -rw-r--r-- | src/commands/utility/memoryusage.ts | 2 | ||||
| -rw-r--r-- | src/commands/utility/version.ts | 2 |
3 files changed, 5 insertions, 1 deletions
diff --git a/src/commands/utility/memorystats.ts b/src/commands/utility/memorystats.ts index 43dbd13..0729fc5 100644 --- a/src/commands/utility/memorystats.ts +++ b/src/commands/utility/memorystats.ts @@ -17,6 +17,8 @@ module.exports = class MemoryStatsUtility extends Command { group: 'utility', memberName: 'memorystats', description: 'Checks the full, current, approximate memory usage statistics of the bot\'s Node.js process.', + userPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'], + clientPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'] }); } run(msg: CommandoMessage) { diff --git a/src/commands/utility/memoryusage.ts b/src/commands/utility/memoryusage.ts index a4f52c0..3c2913a 100644 --- a/src/commands/utility/memoryusage.ts +++ b/src/commands/utility/memoryusage.ts @@ -16,6 +16,8 @@ module.exports = class MemoryUsageUtility extends Command { group: 'utility', memberName: 'memoryusage', description: 'Checks the current, approximate memory usage of the bot\'s Node.js process.', + userPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'], + clientPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'] }); } run(msg: CommandoMessage) { diff --git a/src/commands/utility/version.ts b/src/commands/utility/version.ts index b8d65eb..e23514e 100644 --- a/src/commands/utility/version.ts +++ b/src/commands/utility/version.ts @@ -25,7 +25,7 @@ export default class VersionUtility extends Command { m.edit(`** **`); let emb = new MessageEmbed() - .setDescription('uwufier\'s current build version is **v7.3.6**. ' + emoji.random()) + .setDescription('uwufier\'s current build version is **v7.4.0**. ' + emoji.random()) .setColor(0xFFCC4D) msg.channel.send(emb); |