hardlounge/src/plugins/inputs/topic.js

9 lines
172 B
JavaScript
Raw Normal View History

exports.commands = ["topic"];
2015-09-30 22:39:57 +00:00
exports.input = function(network, chan, cmd, args) {
2014-09-13 21:29:45 +00:00
var irc = network.irc;
2016-03-26 20:25:02 +00:00
irc.raw("TOPIC", chan.name, args.join(" "));
2016-03-06 09:24:56 +00:00
return true;
2014-09-13 21:29:45 +00:00
};