Fix code sequential order

This commit is contained in:
Matias Espinoza 2023-03-13 16:34:31 -03:00
parent 7390cbdbbb
commit 63d2c1ddf1
1 changed files with 5 additions and 5 deletions

View File

@ -53,16 +53,16 @@ export class Bot implements Runnable {
});
this._client.on('ready', async () => {
// Set status to listening command
if (!this._client.user || !this._client.application) {
return;
}
// Set status for show command
this._client.user?.setActivity({
name: '/chat',
type: ActivityType.Listening,
});
if (!this._client.user || !this._client.application) {
return;
}
await this._client.application.commands.set(commands);
});