thelounge/src/plugins/inputs/topic.js
2016-04-07 16:07:40 -04:00

9 lines
172 B
JavaScript

exports.commands = ["topic"];
exports.input = function(network, chan, cmd, args) {
var irc = network.irc;
irc.raw("TOPIC", chan.name, args.join(" "));
return true;
};