From 654decbca4d376cb78a52a189688737e31fe16f3 Mon Sep 17 00:00:00 2001
From: Claude
Date: Fri, 20 Feb 2026 17:51:59 +0000
Subject: [PATCH] Fix scoring to show all 8 individual placements correctly
Display each placement (1st-8th) with its own point value rather than
grouping/averaging: 100, 70, 50, 40, 25, 25, 15, 15
https://claude.ai/code/session_01JUAqVZgo7M7XRBLzpeaWpH
---
app/routes/how-to-play.tsx | 52 +++++++++++++++++++++++++-------------
1 file changed, 35 insertions(+), 17 deletions(-)
diff --git a/app/routes/how-to-play.tsx b/app/routes/how-to-play.tsx
index f0071f9..f4b3450 100644
--- a/app/routes/how-to-play.tsx
+++ b/app/routes/how-to-play.tsx
@@ -50,22 +50,40 @@ export default function HowToPlay() {
Points are awarded based on final standings. The better your pick
finishes, the more points you earn:
-
-
- 🥇 1st Place
- 100 points
-
-
- 🥈 2nd Place
- 70 points
-
-
- 🥉 3rd-4th Place
- 45 points
-
-
-
5th-8th Place
-
20 points
+
+
+
+ 🥇 1st Place
+ 100 pts
+
+
+ 🥈 2nd Place
+ 70 pts
+
+
+ 🥉 3rd Place
+ 50 pts
+
+
+ 4th Place
+ 40 pts
+
+
+ 5th Place
+ 25 pts
+
+
+ 6th Place
+ 25 pts
+
+
+ 7th Place
+ 15 pts
+
+
+ 8th Place
+ 15 pts
+
@@ -93,7 +111,7 @@ export default function HowToPlay() {
The top 8 by total qualifying points then earn the regular scoring
- points (100, 70, 45, 20)
+ points (100, 70, 50, 40, 25, 25, 15, 15)
This rewards consistency across all the major tournaments!