hardlounge/server/plugins/inputs/away.ts

25 lines
412 B
TypeScript
Raw Normal View History

const commands = ["away", "back"];
import {PluginInputHandler} from "./index";
2016-11-19 03:24:39 -05:00
const input: PluginInputHandler = function (network, chan, cmd, args) {
let reason = "";
2016-11-19 03:24:39 -05:00
if (cmd === "away") {
2018-06-07 12:23:51 -04:00
reason = args.join(" ") || " ";
2016-11-19 03:24:39 -05:00
network.irc.raw("AWAY", reason);
2019-07-17 05:33:59 -04:00
} else {
// back command
network.irc.raw("AWAY");
2016-11-19 03:24:39 -05:00
}
network.awayMessage = reason;
this.save();
2016-11-19 03:24:39 -05:00
};
export default {
commands,
input,
};