Skip to content

Commit e4421e7

Browse files
SCS: Ignore if clinched/eliminated
1 parent 8b26340 commit e4421e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/hockey.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,8 +186,8 @@ module.exports = (robot) => {
186186
return;
187187
}
188188
const makePlayoffs = history.data[history.data.length - 1];
189-
if (makePlayoffs === 0) {
190-
robot.logger.info('Odds are zero.');
189+
if ((makePlayoffs === 0) && (makePlayoffs === 100)) {
190+
robot.logger.info('No reason to show the odds.');
191191
return;
192192
}
193193

0 commit comments

Comments
 (0)