From c7af59466ab2eb9531370275b6a0974856f2f2c0 Mon Sep 17 00:00:00 2001 From: Valentin Kaelin Date: Wed, 6 Oct 2021 13:48:58 +0200 Subject: [PATCH] fix: x2 --- server/app/Parsers/MatchParser.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/app/Parsers/MatchParser.ts b/server/app/Parsers/MatchParser.ts index b83cb64..38eb1f1 100644 --- a/server/app/Parsers/MatchParser.ts +++ b/server/app/Parsers/MatchParser.ts @@ -25,7 +25,7 @@ class MatchParser { gameDuration, }) - const isRemake = gameDuration < 300_000 + const isRemake = gameDuration < 300 // - 2x MatchTeam : Red and Blue for (const team of match.info.teams) {