Add a bunch of report shortcut subcommands

This commit is contained in:
lilyissillyyy
2025-09-06 17:38:12 -04:00
parent 4932586862
commit d405acafd3
7 changed files with 94 additions and 2 deletions
+1
View File
@@ -19,6 +19,7 @@ module.exports = class Command {
this.guildOnly = options.guildOnly || false;
this.game = options.game || false;
this.guarded = options.guarded || false;
this.hidden = options.hidden || false;
this.unknown = options.unknown || false;
this.throttling = options.throttling || { usages: 2, duration: 5 };
this.sendTyping = typeof options.sendTyping === 'undefined' ? true : Boolean(options.sendTyping);