Skip to content

Commit

Permalink
Merge pull request #11 from first-australia/m03b-score-fix
Browse files Browse the repository at this point in the history
m03b score fix
  • Loading branch information
benmunday authored Oct 17, 2024
2 parents 63d81ae + d9259a3 commit d6fcda7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/games/2024-Submerged.ts
Original file line number Diff line number Diff line change
Expand Up @@ -435,13 +435,13 @@ const score = (answers: ScoreAnswer[]): number => {
if (answer(answers, 'm03a') === 'Yes') _score += 20;
switch (answer(answers, 'm03b')) {
case '1':
_score += 10;
_score += 5;
break;
case '2':
_score += 20;
_score += 10;
break;
case '3':
_score += 30;
_score += 15;
break;
default:
_score += 0;
Expand Down

0 comments on commit d6fcda7

Please sign in to comment.