aboutsummaryrefslogtreecommitdiff
path: root/src/commands/config
diff options
context:
space:
mode:
authorIRONM00N <64110067+IRONM00N@users.noreply.github.com>2021-07-17 14:14:42 -0400
committerIRONM00N <64110067+IRONM00N@users.noreply.github.com>2021-07-17 14:14:42 -0400
commit4c20333646e49af2b6fcef17546041d309260c93 (patch)
treea49611f62c1098506da925e449b133916338d0de /src/commands/config
parent2db40054054c9452359c83cbad23bb2c9fa3234e (diff)
downloadtanzanite-4c20333646e49af2b6fcef17546041d309260c93.tar.gz
tanzanite-4c20333646e49af2b6fcef17546041d309260c93.tar.bz2
tanzanite-4c20333646e49af2b6fcef17546041d309260c93.zip
Merge branch 'rewrite' of https://github.com/NotEnoughUpdates/bush-bot into rewrite
Diffstat (limited to 'src/commands/config')
-rw-r--r--src/commands/config/blacklist.ts6
-rw-r--r--src/commands/config/disable.ts3
2 files changed, 3 insertions, 6 deletions
diff --git a/src/commands/config/blacklist.ts b/src/commands/config/blacklist.ts
index 9047c41..8e5d703 100644
--- a/src/commands/config/blacklist.ts
+++ b/src/commands/config/blacklist.ts
@@ -77,10 +77,8 @@ export default class BlacklistCommand extends BushCommand {
if (global) {
if (action === 'toggle') {
- const blacklistedUsers = (await Global.findByPk(this.client.config.environment))
- .blacklistedUsers;
- const blacklistedChannels = (await Global.findByPk(this.client.config.environment))
- .blacklistedChannels;
+ const blacklistedUsers = (await Global.findByPk(this.client.config.environment)).blacklistedUsers;
+ const blacklistedChannels = (await Global.findByPk(this.client.config.environment)).blacklistedChannels;
action = blacklistedUsers.includes(targetID) || blacklistedChannels.includes(targetID) ? 'unblacklist' : 'blacklist';
}
const success = await this.client.util
diff --git a/src/commands/config/disable.ts b/src/commands/config/disable.ts
index f6caf88..ed9bf7d 100644
--- a/src/commands/config/disable.ts
+++ b/src/commands/config/disable.ts
@@ -71,8 +71,7 @@ export default class DisableCommand extends BushCommand {
if (global) {
if (action === 'toggle') {
- const disabledCommands = (await Global.findByPk(this.client.config.environment))
- .disabledCommands;
+ const disabledCommands = (await Global.findByPk(this.client.config.environment)).disabledCommands;
action = disabledCommands.includes(commandID) ? 'disable' : 'enable';
}
const success = await this.client.util