thelounge/src/plugins/irc-events/motd.js
2018-02-14 11:00:46 +02:00

28 lines
476 B
JavaScript

"use strict";
const Msg = require("../../models/msg");
module.exports = function(irc, network) {
const client = this;
irc.on("motd", function(data) {
const lobby = network.channels[0];
if (data.motd) {
const msg = new Msg({
type: Msg.Type.MOTD,
text: data.motd,
});
lobby.pushMessage(client, msg);
}
if (data.error) {
const msg = new Msg({
type: Msg.Type.MOTD,
text: data.error,
});
lobby.pushMessage(client, msg);
}
});
};