We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9c42249 + 5fd60f0 commit 3e9559fCopy full SHA for 3e9559f
bouncer.js
@@ -352,6 +352,14 @@ server = doServer(tlsOptions,function(socket) {
352
}
353
else {
354
switch(command[1].toUpperCase().trim()) {
355
+ case 'CHANNELS':
356
+ for (key in connections[this.hash].channels) {
357
+ if (connections[this.hash].channels.hasOwnProperty(key)) {
358
+ this.write(":*jbnc NOTICE * :Active channel: "+connections[this.hash].channels[key].name+"\n");
359
+ }
360
361
+ this.write(":*jbnc NOTICE * :End of active channels\n");
362
+ break;
363
case 'OPMODE':
364
if(command[2]) {
365
if(command[2].toLowerCase().trim()=="on") {
0 commit comments