challenges

This commit is contained in:
Arjun S
2025-08-04 12:02:11 +00:00
parent 6136ba8d8d
commit 334e19abf0

View File

@@ -346,7 +346,24 @@ export default class GameServer implements Party.Server {
return;
}
const challengeString = newsTitles[Math.floor(Math.random() * newsTitles.length)];
const challengeString = [
"What's 9+10",
"Keep on rollin baby",
"MOOD DOWN",
"Haru Urara",
"I am actually a nice guy",
"fembo is still alive",
"I loke tokai teio",
"not so fast my queen",
"random stuff here",
"what are you doing",
"goo goo baby time",
`FU BO`,
`When are you watching paint dry again?`,
`Insert Girls Kissing`,
`We luub bo`,
`MOOD DOWN`,
][Math.floor(Math.random() * newsTitles.length)];
const challengeDuration = 10 * 1000; // 10 seconds to solve
const expiresAt = now + challengeDuration;