We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9d40cc commit 29995cbCopy full SHA for 29995cb
app/assets/javascripts/angular/directives/matchmap.js
@@ -44,7 +44,12 @@ gg.directive('matchmap', [function() {
44
scope.context.lineWidth = 2;
45
46
47
- nowIndex = Math.floor(999.0 * v / (scope.match.duration_seconds * 16));
+ speed_multiplier = 1;
48
+ if (scope.$parent.match.expansion_tag == 'LotV') {
49
+ speed_multiplier = Sc2.LOTV_SPEEDUP;
50
+ }
51
+
52
+ nowIndex = Math.floor(999.0 * v / (scope.match.duration_seconds * 16 * speed_multiplier));
53
if (!scope.match.camera) return;
54
cameraInfo = scope.match.camera[0];
55
if (scope.match.locations)
0 commit comments