diff options
| author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-08-05 18:26:55 -0400 |
|---|---|---|
| committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-08-05 18:26:55 -0400 |
| commit | f4ed3141722719f26ac2286d57a92b1031accaf3 (patch) | |
| tree | 9d08f8e52d6dd56dd53a5fdbe585d6147db4c795 /src/commands/moderation | |
| parent | ad2077fa157d49c1099f21ac2effe05903c39035 (diff) | |
| download | tanzanite-f4ed3141722719f26ac2286d57a92b1031accaf3.tar.gz tanzanite-f4ed3141722719f26ac2286d57a92b1031accaf3.tar.bz2 tanzanite-f4ed3141722719f26ac2286d57a92b1031accaf3.zip | |
a few fixes and stuff
Diffstat (limited to 'src/commands/moderation')
| -rw-r--r-- | src/commands/moderation/purge.ts | 1 | ||||
| -rw-r--r-- | src/commands/moderation/role.ts | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/commands/moderation/purge.ts b/src/commands/moderation/purge.ts index f4a53a8..4f1a5a6 100644 --- a/src/commands/moderation/purge.ts +++ b/src/commands/moderation/purge.ts @@ -52,6 +52,7 @@ export default class PurgeCommand extends BushCommand { if (args.bot) { shouldFilter.push(filterMessage.author.bot); } + return shouldFilter.filter((bool) => bool === false).length === 0; }; const purged = await message.channel.bulkDelete(messages, true).catch(() => {}); diff --git a/src/commands/moderation/role.ts b/src/commands/moderation/role.ts index 1371ee8..0118f22 100644 --- a/src/commands/moderation/role.ts +++ b/src/commands/moderation/role.ts @@ -32,7 +32,7 @@ export default class RoleCommand extends BushCommand { id: 'role', type: 'role', prompt: { - start: `What role do you want to add/remove to/from the user.?`, + start: `What role do you want to add/remove to/from the user?`, retry: `{error} Choose a valid role to add/remove.` } }, |
