hardlounge/src/plugins/inputs/topic.js

12 lines
221 B
JavaScript
Raw Normal View History

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