diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-08-29 19:53:53 -0400 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-08-29 19:53:53 -0400 |
commit | 800668f3e0fec80f3ba08f115d9563324bc54045 (patch) | |
tree | 6a210bcfafbdd82382dab1dc18a7e2aca93e42de /lib/utils/BotClientUtils.ts | |
parent | d941214503812267415db570f646cc69bc22664d (diff) | |
download | tanzanite-800668f3e0fec80f3ba08f115d9563324bc54045.tar.gz tanzanite-800668f3e0fec80f3ba08f115d9563324bc54045.tar.bz2 tanzanite-800668f3e0fec80f3ba08f115d9563324bc54045.zip |
deploy stuff
Diffstat (limited to 'lib/utils/BotClientUtils.ts')
-rw-r--r-- | lib/utils/BotClientUtils.ts | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/utils/BotClientUtils.ts b/lib/utils/BotClientUtils.ts index a251bdf..1dd46bf 100644 --- a/lib/utils/BotClientUtils.ts +++ b/lib/utils/BotClientUtils.ts @@ -469,7 +469,10 @@ export class BotClientUtils { if (!(channel in channels)) throw new TypeError(`Invalid channel provided (${channel}), must be one of ${Object.keys(channels).join(' ')}`); - const channelId = channels[channel]; + const channelConfig = channels[channel]; + const environment = this.client.config.environment; + + const channelId = typeof channelConfig === 'string' ? channelConfig : channelConfig[environment]; if (channelId === '') return null; const res = await this.client.channels.fetch(channelId); |