hardlounge/src/plugins/irc-events/welcome.js

24 lines
438 B
JavaScript
Raw Normal View History

"use strict";
const Msg = require("../../models/msg");
2014-09-13 17:29:45 -04:00
module.exports = function(irc, network) {
const client = this;
irc.on("registered", function(data) {
2016-05-12 07:15:38 -04:00
network.setNick(data.nick);
const lobby = network.channels[0];
const msg = new Msg({
text: "You're now known as " + data.nick,
2014-09-13 17:29:45 -04:00
});
lobby.pushMessage(client, msg);
2014-10-11 19:59:01 -04:00
client.save();
2014-09-25 19:51:53 -04:00
client.emit("nick", {
network: network.id,
nick: data.nick,
2014-09-25 19:51:53 -04:00
});
2014-09-13 17:29:45 -04:00
});
};