Skip to content
Snippets Groups Projects
Commit 09ada1cf authored by cyan's avatar cyan
Browse files

* A variable was being declared globally when it shouldnt've.

parent dd7ca542
No related branches found
No related tags found
No related merge requests found
...@@ -949,7 +949,7 @@ function User_Work() { ...@@ -949,7 +949,7 @@ function User_Work() {
this.numeric(353,"* * :"+tmp); this.numeric(353,"* * :"+tmp);
this.numeric(366, "* :End of /NAMES list."); this.numeric(366, "* :End of /NAMES list.");
} else { } else {
chans = cmd[1].split(','); var chans = cmd[1].split(',');
for (nc in chans) { for (nc in chans) {
if ((chans[nc][0] == "#") || if ((chans[nc][0] == "#") ||
(chans[nc][0] == "&")) { (chans[nc][0] == "&")) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment