Files
f0bm/src/clients/irc/welcome.mjs
2018-09-02 12:07:40 +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));
};