From 6a8640ce61494ddbfa5867b2191634050b38e65b Mon Sep 17 00:00:00 2001 From: schneefux Date: Sun, 25 Feb 2018 16:48:46 +0100 Subject: add player 5v5 played --- worker.js | 2 ++ 1 file changed, 2 insertions(+) (limited to 'worker.js') diff --git a/worker.js b/worker.js index a9b7c0c..6f03193 100644 --- a/worker.js +++ b/worker.js @@ -88,7 +88,9 @@ function flatten(o) { } if ("games_played" in o) { o.played_ranked = o.games_played.ranked || 0; + o.played_ranked_5v5 = o.games_played.ranked_5v5 || 0; o.played_casual = o.games_played.casual || 0; + o.played_casual_5v5 = o.games_played.casual_5v5 || 0; o.played_blitz = o.games_played.blitz || 0; o.played_blitz_rounds = o.games_played.blitz_rounds || 0; o.played_aral = o.games_played.aral || 0; -- cgit v1.3.1