1
0
forked from keinBot/cuffeo
Files
scuffeo/src/clients/irc/welcome.mjs
Flummi 7c8a83fa3c test
2018-09-07 19:22:47 +02:00

7 lines
193 B
JavaScript

export default client => {
client._cmd.set("001", function (msg) { // welcome
this.join(this.options.channels);
this.emit("data", ["connected", msg.params[1]]);
}.bind(client));
};