From 0fb4ce80f89ea90ec707c517c8d9c019a32c11a6 Mon Sep 17 00:00:00 2001 From: sirDonovan Date: Wed, 21 Jan 2015 11:06:33 -0600 Subject: [PATCH] Unlock users affected by rangelocks on alts Users should be unlocked if they switch to accounts that would normally be unaffected --- users.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/users.js b/users.js index 94a272a88f..229984a311 100644 --- a/users.js +++ b/users.js @@ -694,7 +694,7 @@ User = (function () { this.locked = '#range'; this.updateIdentity(); } - } else if (this.locked && lockedRanges[this.locked]) { + } else if (this.locked && (this.locked === '#range' || lockedRanges[this.locked])) { this.locked = false; this.updateIdentity(); }