From 6b4a61d6fc7d500c868388a4867ac14282d97e87 Mon Sep 17 00:00:00 2001 From: Cooper Ransom Date: Tue, 27 Feb 2024 19:34:04 -0500 Subject: [PATCH] ADD EVEN MORE FISHIE --- src/components/utils/Lightbar.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/utils/Lightbar.tsx b/src/components/utils/Lightbar.tsx index e1df373a..6059b201 100644 --- a/src/components/utils/Lightbar.tsx +++ b/src/components/utils/Lightbar.tsx @@ -138,7 +138,7 @@ function ParticlesCanvas() { canvas.height = canvas.scrollHeight; // Basic particle config - const particleCount = 20; + const particleCount = 25; let imageParticleCount = particleCount; // Holiday overrides @@ -160,12 +160,12 @@ function ParticlesCanvas() { } // Fish easter egg - const shouldShowFishie = Math.floor(Math.random() * 600) === 69; + const shouldShowFishie = Math.floor(Math.random() * 130) > 69; if (shouldShowFishie) { imageOverride = [ { image: "/lightbar-images/fishie.png", - sizeRange: [10, 11] as [number, number], + sizeRange: [10, 13] as [number, number], }, ]; imageParticleCount = particleCount / 2;