From 966071ae2dd62b2e645c2469195817132d05612d Mon Sep 17 00:00:00 2001 From: Chris Gerth Date: Wed, 11 Mar 2026 20:44:05 -0500 Subject: [PATCH] bad timeouts, more phrases --- photon-client/src/lib/quarky.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/photon-client/src/lib/quarky.js b/photon-client/src/lib/quarky.js index 3d428833f..629489c9a 100644 --- a/photon-client/src/lib/quarky.js +++ b/photon-client/src/lib/quarky.js @@ -47,7 +47,7 @@ const quarkyPhrases = [ "Reverse phase oscillation detected!", "Initializing hyperflux capacitor...", "Reticulating splines in progress.", - "Quantum entanglement buffer overflow.", + "Quantum entanglement buffer overflowzomg", "Did you remember the turbo-encabulator?", "Engaging magnetic flux inverter.", "Calibrating photon resonance field.", @@ -66,6 +66,7 @@ const quarkyPhrases = [ "Greetings", "You look like you need some help!", "Set this slider to 25", + "Set this slider to 67. HAHA 67!!!!", "That's a horrible choice!", "Fun is a core value! Is that a fun choice?", "If your grandma saw that choice, would she be proud?", @@ -113,7 +114,7 @@ function playAnimation(animation) { quarkySpeechText = quarkyPhrases[Math.floor(Math.random() * quarkyPhrases.length)]; speechBubble.textContent = quarkySpeechText; speechBubble.style.display = 'block'; - setTimeout(() => { speechBubble.style.opacity = 1; }, 10); + setTimeout(() => { speechBubble.style.opacity = 1; }, 1250); } }