From f7ed2adb7373c20988275fa60e17d867860b5bbb Mon Sep 17 00:00:00 2001 From: calzoneman Date: Thu, 18 Apr 2013 15:36:52 -0500 Subject: [PATCH] Fix Issue #35 --- channel.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/channel.js b/channel.js index a261fe4d..4b72c23a 100644 --- a/channel.js +++ b/channel.js @@ -806,7 +806,7 @@ Channel.prototype.tryMove = function(user, data) { if(!Rank.hasPermission(user, "queue") && this.leader != user && (!this.openqueue || - this.openqueue || !this.opts.qopen_allow_move)) { + this.openqueue && !this.opts.qopen_allow_move)) { return; }