Remove join, nick and whois inputs, they are cleanly handled by the server

Fixes #201
This commit is contained in:
Pavel Djundik 2016-03-20 16:14:37 +02:00
parent 05be0ff57f
commit 52b953c492
5 changed files with 0 additions and 34 deletions

View File

@ -17,7 +17,6 @@ $(function() {
"/notice", "/notice",
"/op", "/op",
"/part", "/part",
"/query",
"/quit", "/quit",
"/raw", "/raw",
"/say", "/say",

View File

@ -35,15 +35,12 @@ var events = [
var inputs = [ var inputs = [
// These inputs are sorted in order that is most likely to be used // These inputs are sorted in order that is most likely to be used
"msg", "msg",
"whois",
"part", "part",
"action", "action",
"connect", "connect",
"invite", "invite",
"join",
"kick", "kick",
"mode", "mode",
"nick",
"notice", "notice",
"quit", "quit",
"raw", "raw",

View File

@ -1,10 +0,0 @@
exports.commands = ["join"];
exports.input = function(network, chan, cmd, args) {
if (args.length !== 0) {
var irc = network.irc;
irc.join(args[0], args[1]);
}
return true;
};

View File

@ -1,10 +0,0 @@
exports.commands = ["nick"];
exports.input = function(network, chan, cmd, args) {
if (args.length !== 0) {
var irc = network.irc;
irc.nick(args[0]);
}
return true;
};

View File

@ -1,10 +0,0 @@
exports.commands = ["query", "whois"];
exports.input = function(network, chan, cmd, args) {
if (args.length !== 0) {
var irc = network.irc;
irc.whois(args[0]);
}
return true;
};