From 47e7b81094bcbf616b20c03c8f86e3bfa38e62e9 Mon Sep 17 00:00:00 2001 From: Deukhoofd Date: Fri, 4 Mar 2016 19:58:59 +0100 Subject: [PATCH] Added LC as playable tier --- public/js/app.js | 3 ++- public/js/replays.js | 3 ++- shared/tier.coffee | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/public/js/app.js b/public/js/app.js index db3a861..cd1be36 100644 --- a/public/js/app.js +++ b/public/js/app.js @@ -1049,7 +1049,8 @@ name: "LC", humanName: "Little Cup", tierRank: 1, - playable: false + playable: true, + priority: 3 }, PU: { name: "PU", diff --git a/public/js/replays.js b/public/js/replays.js index 5683aa1..e0841bb 100644 --- a/public/js/replays.js +++ b/public/js/replays.js @@ -1049,7 +1049,8 @@ name: "LC", humanName: "Little Cup", tierRank: 1, - playable: false + playable: true, + priority: 3 }, PU: { name: "PU", diff --git a/shared/tier.coffee b/shared/tier.coffee index 66091d4..d2b12f0 100644 --- a/shared/tier.coffee +++ b/shared/tier.coffee @@ -24,7 +24,8 @@ self.Tiers = name : "LC" humanName : "Little Cup" tierRank : 1 - playable : false + playable : true + priority : 3 PU: name : "PU" humanName : "Poorly Used"