From 3d1d02fade54000edf2782e11498283c2353654b Mon Sep 17 00:00:00 2001 From: CoolGame8 Date: Fri, 13 Dec 2024 18:34:39 +0200 Subject: [PATCH] fix m14 to show right amount of points in the scoresheet --- libs/season/src/lib/data/scoresheet.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/season/src/lib/data/scoresheet.ts b/libs/season/src/lib/data/scoresheet.ts index bc54473a..dc70d472 100644 --- a/libs/season/src/lib/data/scoresheet.ts +++ b/libs/season/src/lib/data/scoresheet.ts @@ -185,7 +185,7 @@ export const scoresheet: ScoresheetSchema = { points += 20; break; case 2: - points += 10; + points += 30; break; default: break;