diff --git a/carrot/src/background/predict.js b/carrot/src/background/predict.js index 52df6e9..a31c6c9 100644 --- a/carrot/src/background/predict.js +++ b/carrot/src/background/predict.js @@ -22,7 +22,7 @@ export class Contestant { this.points = points; this.penalty = penalty; this.rating = rating; - this.effectiveRating = rating == null ? DEFAULT_RATING : rating; + this.effectiveRating = rating == null || rating == 0 ? DEFAULT_RATING : rating; this.rank = null; this.delta = null;