caa46042bf
Several ES6 additions are only available in strict mode. Example: > SyntaxError: Block-scoped declarations (let, const, function, class) not yet supported outside strict mode Strict mode was also enabled in a few of our files already, and it is a good thing to have anyway.
30 lines
569 B
JavaScript
30 lines
569 B
JavaScript
"use strict";
|
|
|
|
exports.commands = ["notice"];
|
|
|
|
exports.input = function(network, chan, cmd, args) {
|
|
if (!args[1]) {
|
|
return;
|
|
}
|
|
|
|
var message = args.slice(1).join(" ");
|
|
var irc = network.irc;
|
|
irc.notice(args[0], message);
|
|
|
|
var targetChan = network.getChannel(args[0]);
|
|
if (typeof targetChan === "undefined") {
|
|
message = "{to " + args[0] + "} " + message;
|
|
targetChan = chan;
|
|
}
|
|
|
|
if (!network.irc.network.cap.isEnabled("echo-message")) {
|
|
irc.emit("notice", {
|
|
nick: irc.user.nick,
|
|
target: targetChan.name,
|
|
message: message
|
|
});
|
|
}
|
|
|
|
return true;
|
|
};
|