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);