thelounge/src/plugins/inputs/away.js

20 lines
287 B
JavaScript
Raw Normal View History

2016-11-19 09:24:39 +01:00
"use strict";
exports.commands = ["away", "back"];
exports.input = function(network, chan, cmd, args) {
if (cmd === "away") {
let reason = " ";
if (args.length > 0) {
reason = args.join(" ");
}
network.irc.raw("AWAY", reason);
return;
}
network.irc.raw("AWAY");
};