2020-06-29 07:51:17 +00:00
|
|
|
"use strict";
|
|
|
|
|
|
|
|
const Msg = require("../../models/msg");
|
|
|
|
|
|
|
|
module.exports = function (irc, network) {
|
|
|
|
const client = this;
|
|
|
|
|
|
|
|
irc.on("help", function (data) {
|
|
|
|
const lobby = network.channels[0];
|
|
|
|
|
|
|
|
if (data.help) {
|
|
|
|
const msg = new Msg({
|
|
|
|
type: Msg.Type.MONOSPACE_BLOCK,
|
|
|
|
command: "help",
|
|
|
|
text: data.help,
|
|
|
|
});
|
2020-08-14 11:26:03 +00:00
|
|
|
lobby.pushMessage(client, msg, true);
|
2020-06-29 07:51:17 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|