fix: don't count remake as loss in friends winrate

This commit is contained in:
Valentin Kaelin 2019-10-29 20:48:19 +01:00
parent a02ac32a12
commit 42ac3f6bcc

View file

@ -14,6 +14,7 @@ class SummonerHelper {
let teamMates = summonerDB.mates || []
for (const match of matches) {
if(match.result === 'Remake') continue
const win = match.result === 'Win'
for (const ally of match.allyTeam) {