From ffbe3348966a2dda583fbf830b27fdb3ee7aeddf Mon Sep 17 00:00:00 2001 From: you Date: Sun, 22 Mar 2026 08:15:15 +0000 Subject: [PATCH] Rain: 4 hops = full screen (was 8), matches median of 3 hops --- public/index.html | 2 +- public/live.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/public/index.html b/public/index.html index 9089280..1198ee8 100644 --- a/public/index.html +++ b/public/index.html @@ -90,7 +90,7 @@ - + diff --git a/public/live.js b/public/live.js index 8db3dcb..865843f 100644 --- a/public/live.js +++ b/public/live.js @@ -1818,7 +1818,7 @@ const W = rainCanvas.width; const H = rainCanvas.height; // Fall distance proportional to hops: 8+ hops = full height - const maxY = H * Math.min(1, hopCount / 8); + const maxY = H * Math.min(1, hopCount / 4); // Duration: 5s for full height, proportional for shorter const duration = 5000 * (maxY / H);