thelounge/src/plugins/inputs/raw.js

11 lines
188 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;
2016-03-08 14:36:25 +01:00
irc.raw(args);
2014-09-13 23:29:45 +02:00
}
2016-03-06 10:24:56 +01:00
return true;
2014-09-13 23:29:45 +02:00
};