Skip to content

Commit

Permalink
Revert "m03b score fix"
Browse files Browse the repository at this point in the history
This reverts commit ffa5eeb.
  • Loading branch information
benmunday committed Oct 17, 2024
1 parent ffa5eeb commit 63d81ae
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 += 5;
_score += 10;
break;
case '2':
_score += 10;
_score += 20;
break;
case '3':
_score += 15;
_score += 30;
break;
default:
_score += 0;
Expand Down

0 comments on commit 63d81ae

Please sign in to comment.