From ed11b2d15d99daee040469e1c8ba9a328787ab23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20P=C4=99dzich?= Date: Sat, 27 Sep 2025 10:38:03 +0200 Subject: [PATCH] Update message and max delay --- index.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.mjs b/index.mjs index 332f092..219f4c0 100644 --- a/index.mjs +++ b/index.mjs @@ -1,9 +1,9 @@ import { createServer } from 'node:http'; import { setTimeout } from 'node:timers'; -const msg = ':) you are an idiot hahahahaha :)'; +const msg = 'Relax, take it easy! For there is nothing that we can do.'; const minDelay = 3000; -const maxDelay = 7000; +const maxDelay = 5000; const delayDiff = maxDelay - minDelay; const randomDelay = () => Math.floor(Math.random() * delayDiff + minDelay);