Skip to content

Commit 47136cd

Browse files
committed
fixed a bit of code
1 parent f4a0eba commit 47136cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

score.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ round_new = function (num_places) {
337337
for (var i=0; i<this.performances.length; i++) {
338338

339339
var rank = this.performances[i].rank;
340-
if (rank <= num_places)
340+
if (rank <= this.num_places)
341341
winners[rank].push(this.performances[i]);
342342
}
343343

0 commit comments

Comments
 (0)