diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-12-26 17:16:32 -0500 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-12-26 17:16:32 -0500 |
commit | fc390ffc300334c396d9d06b0feaf8fbc6ed2814 (patch) | |
tree | a6282a74cf99033291ac7bc9de123ae273d528d2 /src/commands/moderation/role.ts | |
parent | 062435590980b87f5b054418ed88604e26358ae9 (diff) | |
download | tanzanite-fc390ffc300334c396d9d06b0feaf8fbc6ed2814.tar.gz tanzanite-fc390ffc300334c396d9d06b0feaf8fbc6ed2814.tar.bz2 tanzanite-fc390ffc300334c396d9d06b0feaf8fbc6ed2814.zip |
documentation, bug fixes etc
Diffstat (limited to 'src/commands/moderation/role.ts')
-rw-r--r-- | src/commands/moderation/role.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/moderation/role.ts b/src/commands/moderation/role.ts index 275db38..689ef1e 100644 --- a/src/commands/moderation/role.ts +++ b/src/commands/moderation/role.ts @@ -56,7 +56,7 @@ export default class RoleCommand extends BushCommand { }); } - override *args(message: BushMessage): Generator<ArgumentOptions | Flag> { + public override *args(message: BushMessage): Generator<ArgumentOptions | Flag> { const action = (['rr'] as const).includes(message.util.parsed?.alias ?? '') ? 'remove' : (['ar', 'ra'] as const).includes(message.util.parsed?.alias ?? '') |