diff options
| author | 8cy <[email protected]> | 2020-04-23 11:48:22 -0700 |
|---|---|---|
| committer | 8cy <[email protected]> | 2020-04-23 11:48:22 -0700 |
| commit | 02b211b23bb7f95895c7e7f9dbf16983b13692af (patch) | |
| tree | 0b92429799ad61cc0f1d676e9be03389c44155a8 /src/commands/utility | |
| parent | change invite link, v.7.3.6 (diff) | |
| download | dep-core-02b211b23bb7f95895c7e7f9dbf16983b13692af.tar.xz dep-core-02b211b23bb7f95895c7e7f9dbf16983b13692af.zip | |
DARLING in the FRANXX, v7.4.0
- add mongo db support
- add zero two darling cmd
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); |