diff options
Diffstat (limited to 'src/commands/bot/clientid.ts')
| -rw-r--r-- | src/commands/bot/clientid.ts | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/commands/bot/clientid.ts b/src/commands/bot/clientid.ts index da7717e..ea89891 100644 --- a/src/commands/bot/clientid.ts +++ b/src/commands/bot/clientid.ts @@ -12,7 +12,11 @@ module.exports = class ClientIDBot extends Command { description: 'Tells you the bot\'s client ID version.', examples: ['uwu!clientid', 'uwu!cid'], userPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'], - clientPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'] + clientPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'], + throttling: { + usages: 5, + duration: 30 + }, }); } run(msg: CommandoMessage) { |