parent
f49bf19023
commit
02a343624e
@ -13,6 +13,17 @@ module.exports = function(irc, network) {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const user = chan.getUser(data.nick);
|
||||||
|
const msg = new Msg({
|
||||||
|
type: Msg.Type.PART,
|
||||||
|
time: data.time,
|
||||||
|
text: data.message || "",
|
||||||
|
hostmask: data.ident + "@" + data.hostname,
|
||||||
|
from: user,
|
||||||
|
self: data.nick === irc.user.nick,
|
||||||
|
});
|
||||||
|
chan.pushMessage(client, msg);
|
||||||
|
|
||||||
if (data.nick === irc.user.nick) {
|
if (data.nick === irc.user.nick) {
|
||||||
network.channels = _.without(network.channels, chan);
|
network.channels = _.without(network.channels, chan);
|
||||||
chan.destroy();
|
chan.destroy();
|
||||||
@ -21,17 +32,6 @@ module.exports = function(irc, network) {
|
|||||||
chan: chan.id,
|
chan: chan.id,
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
const user = chan.getUser(data.nick);
|
|
||||||
|
|
||||||
const msg = new Msg({
|
|
||||||
type: Msg.Type.PART,
|
|
||||||
time: data.time,
|
|
||||||
text: data.message || "",
|
|
||||||
hostmask: data.ident + "@" + data.hostname,
|
|
||||||
from: user,
|
|
||||||
});
|
|
||||||
chan.pushMessage(client, msg);
|
|
||||||
|
|
||||||
chan.removeUser(user);
|
chan.removeUser(user);
|
||||||
client.emit("users", {
|
client.emit("users", {
|
||||||
chan: chan.id,
|
chan: chan.id,
|
||||||
|
Loading…
Reference in New Issue
Block a user