From 21b85322a82a0ae4aa63c82ee332f91c4fd21d50 Mon Sep 17 00:00:00 2001 From: The Immortal Date: Tue, 29 Apr 2014 06:55:38 -0700 Subject: [PATCH] Fix BL2 being above UU in the teambuilder --- js/client-teambuilder.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/client-teambuilder.js b/js/client-teambuilder.js index 9dd0c834d..04842e514 100644 --- a/js/client-teambuilder.js +++ b/js/client-teambuilder.js @@ -1056,7 +1056,7 @@ if (this.curTeam) { if (this.curTeam.format === 'ou') return ['OU','BL','UU','BL2','Limbo B','Limbo C','Limbo','NFE','LC Uber','LC']; if (this.curTeam.format === 'cap') return ['CAP','OU','BL','UU','BL2','Limbo B','Limbo C','Limbo','NFE','LC Uber','LC']; - if (this.curTeam.format === 'uu') return ['BL2','UU','Limbo B','Limbo C','Limbo','NFE','LC Uber','LC']; + if (this.curTeam.format === 'uu') return ['UU','BL2','Limbo B','Limbo C','Limbo','NFE','LC Uber','LC']; if (this.curTeam.format === 'ru') return ['Limbo B','Limbo C','Limbo','NFE','LC Uber','LC']; if (this.curTeam.format === 'lc') return ['LC','NFE','Limbo']; }