Fix mode message only making last nick clickable
This commit is contained in:
parent
7d6f98d974
commit
40954c9a3a
@ -60,16 +60,16 @@ module.exports = function (irc, network) {
|
|||||||
self: data.nick === irc.user.nick,
|
self: data.nick === irc.user.nick,
|
||||||
});
|
});
|
||||||
|
|
||||||
for (const param of data.raw_params) {
|
const users = [];
|
||||||
const users = [];
|
|
||||||
|
|
||||||
|
for (const param of data.raw_params) {
|
||||||
if (targetChan.findUser(param)) {
|
if (targetChan.findUser(param)) {
|
||||||
users.push(param);
|
users.push(param);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (users.length > 0) {
|
if (users.length > 0) {
|
||||||
msg.users = users;
|
msg.users = users;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
targetChan.pushMessage(client, msg);
|
targetChan.pushMessage(client, msg);
|
||||||
|
Loading…
Reference in New Issue
Block a user