diff --git a/index.mjs b/index.mjs index b4e2d8d..332f092 100644 --- a/index.mjs +++ b/index.mjs @@ -2,8 +2,8 @@ import { createServer } from 'node:http'; import { setTimeout } from 'node:timers'; const msg = ':) you are an idiot hahahahaha :)'; -const minDelay = 1000; -const maxDelay = 5000; +const minDelay = 3000; +const maxDelay = 7000; const delayDiff = maxDelay - minDelay; const randomDelay = () => Math.floor(Math.random() * delayDiff + minDelay);