Added inspircd 396 numeric RPL_HOSTCLOACKING
authorKiwiIRC <kiwiirc@ns352438.ovh.net>
Fri, 25 Apr 2014 13:52:48 +0000 (15:52 +0200)
committerKiwiIRC <kiwiirc@ns352438.ovh.net>
Fri, 25 Apr 2014 13:52:48 +0000 (15:52 +0200)
server/irc/commands.js

index bdf2038661a6901f139592b54cf9e673af83e6b9..ff86f444be78ada744508024ed6625b0e5cb81ee 100644 (file)
@@ -54,6 +54,7 @@ irc_numerics = {
     '376': 'RPL_ENDOFMOTD',
     '378': 'RPL_WHOISHOST',
     '379': 'RPL_WHOISMODES',
+    '396': 'RPL_HOSTCLOACKING',
     '401': 'ERR_NOSUCHNICK',
     '404': 'ERR_CANNOTSENDTOCHAN',
     '405': 'ERR_TOOMANYCHANNELS',
@@ -983,7 +984,11 @@ handlers = {
         var params = _.clone(command.params);
         params.shift();
         genericNotice.call(this, command, params.slice(0, -1).join(', ') + ' ' + command.params[command.params.length - 1]);
-    }
+    },
+    
+    RPL_HOSTCLOACKING: function (command) {
+            genericNotice.call(this, command, command.params[1]+' '+command.params[command.params.length - 1]);
+    },    
 };