diff options
author | TymanWasTaken <32660892+tymanwastaken@users.noreply.github.com> | 2021-05-28 21:51:02 -0600 |
---|---|---|
committer | TymanWasTaken <32660892+tymanwastaken@users.noreply.github.com> | 2021-05-28 21:51:02 -0600 |
commit | 1e9e334097702c68d871365fc016aa096d03c491 (patch) | |
tree | 65b22d1d529cda850e5c30e9fe19a2504fca2645 /src/listeners | |
parent | 53d8d5e551e9a239fd4c48c7dca4e1f6fb8d81e9 (diff) | |
download | tanzanite-1e9e334097702c68d871365fc016aa096d03c491.tar.gz tanzanite-1e9e334097702c68d871365fc016aa096d03c491.tar.bz2 tanzanite-1e9e334097702c68d871365fc016aa096d03c491.zip |
Remove references - caused some issues, comment out some image gen code
Diffstat (limited to 'src/listeners')
-rw-r--r-- | src/listeners/client/syncslashcommands.ts | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/listeners/client/syncslashcommands.ts b/src/listeners/client/syncslashcommands.ts index da42185..febdd1b 100644 --- a/src/listeners/client/syncslashcommands.ts +++ b/src/listeners/client/syncslashcommands.ts @@ -10,7 +10,10 @@ export default class CreateSlashCommands extends BotListener { async exec(): Promise<void> { if (this.client.config.dev && this.client.config.devGuild) { // Use guild slash commands for instant registration in dev - await this.client.util.syncSlashCommands(false, this.client.config.devGuild); + await this.client.util.syncSlashCommands( + false, + this.client.config.devGuild + ); } else { // Use global in production await this.client.util.syncSlashCommands(); |