Increase unread counter for HELP and INFO messages

This commit is contained in:
Pavel Djundik 2020-08-14 14:26:03 +03:00
parent b6782da837
commit 5861ffadf2
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ module.exports = function (irc, network) {
command: "help", command: "help",
text: data.help, text: data.help,
}); });
lobby.pushMessage(client, msg); lobby.pushMessage(client, msg, true);
} }
}); });
}; };

View File

@ -14,7 +14,7 @@ module.exports = function (irc, network) {
command: "info", command: "info",
text: data.info, text: data.info,
}); });
lobby.pushMessage(client, msg); lobby.pushMessage(client, msg, true);
} }
}); });
}; };