From 334e19abf09740a50a6ffb11adc50289399b2198 Mon Sep 17 00:00:00 2001 From: Arjun S <37960163+arjunindia@users.noreply.github.com> Date: Mon, 4 Aug 2025 12:02:11 +0000 Subject: [PATCH] challenges --- party/index.ts | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/party/index.ts b/party/index.ts index 1ff3e61..fb9eacc 100644 --- a/party/index.ts +++ b/party/index.ts @@ -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;