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;