thelounge/src/plugins/inputs/raw.js

11 lines
200 B
JavaScript
Raw Normal View History

exports.commands = ["raw", "send", "quote"];
2016-03-06 10:24:56 +01:00
exports.input = function(network, chan, cmd, args) {
2014-09-13 23:29:45 +02:00
if (args.length !== 0) {
var irc = network.irc;
irc.write(args.join(" "));
}
2016-03-06 10:24:56 +01:00
return true;
2014-09-13 23:29:45 +02:00
};