thelounge/src/plugins/inputs/topic.js

13 lines
243 B
JavaScript
Raw Normal View History

2014-07-03 00:00:11 +02:00
module.exports = function(network, chan, cmd, args) {
if (cmd != "topic") {
return;
}
var msg = "TOPIC";
msg += " " + chan.name;
msg += args[0] ? (" :" + args.join(" ")) : "";
var irc = network.irc;
irc.write(msg);
2014-06-27 01:05:47 +02:00
};