summaryrefslogtreecommitdiff
path: root/src/commands/fun/say.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/fun/say.ts')
-rw-r--r--src/commands/fun/say.ts5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/commands/fun/say.ts b/src/commands/fun/say.ts
index 0d360bd..fa97b3a 100644
--- a/src/commands/fun/say.ts
+++ b/src/commands/fun/say.ts
@@ -8,7 +8,6 @@ module.exports = class SayFun extends Command {
group: 'fun',
memberName: 'say',
description: 'Allows you to speak as the bot.',
- guildOnly: true,
args: [
{
key: 'say',
@@ -17,6 +16,10 @@ module.exports = class SayFun extends Command {
}
],
examples: ['uwu!say hi'],
+ throttling: {
+ usages: 5,
+ duration: 30
+ },
userPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
clientPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY']
});