kiwiirc / irc-framework

🛠️ A better IRC framework for node.js. For bots and full clients.
MIT License
180 stars 62 forks source link

Multiple connections not working #358

Open Nemoopla opened 1 year ago

Nemoopla commented 1 year ago

I openned two connections

var bot = new IRC.Client();
var bot2 = new IRC.Client();

bot.connect{...}
bot2.connect(...)

After bot.quit() bot2 also loses connection. How to fix it?