Always join bot channel

This commit is contained in:
Leppunen 2021-09-06 23:23:14 +03:00
parent e5f69a4d72
commit 6a16a7e07f
1 changed files with 4 additions and 3 deletions

View File

@ -193,11 +193,12 @@ if (!Config.IgnorePNSL) {
listenClient = createTwitchClient();
listenClient.connect();
listenClient.on('ready', async () => {
if (Config.Channels.length === 0) {
await listenClient.join(`#${Config.Username}`);
} else {
await listenClient.join(`#${Config.Username}`);
if (Config.Channels.length !== 0) {
await listenClient.joinAll(Config.Channels);
}
console.log(`${chalk.green('[TWITCH]')} || Command listener connected`);
});