Skip to content

Commit

Permalink
m03b score fix
Browse files Browse the repository at this point in the history
  • Loading branch information
benmunday committed Oct 17, 2024
1 parent 63d81ae commit d9259a3
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 d9259a3

Please sign in to comment.