Skip to content

Commit

Permalink
Compute mean for big blinds
Browse files Browse the repository at this point in the history
  • Loading branch information
viroulep committed Jul 7, 2020
1 parent 2e24978 commit 99ab123
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/logic/xlsx-utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ const avgForRow = (eventId, formatId, row) => {
// For FM mo3, the value doesn't need to be taken as moves!
// 5 would return the WR marker for the best.
let avgDetected = timeToValue(row[6 + maxAttempts]);
if (!avgDetected && eventId === '333bf') {
if (!avgDetected && ['333bf', '444bf', '555bf'].includes(eventId)) {
// Let's compute the mean
let attempts = attemptsFromResultRow(eventId, formatId, row);
if (attempts.length !== 3)
Expand Down

0 comments on commit 99ab123

Please sign in to comment.