Skip to content

Commit

Permalink
Don't report stats as qualified until the opening of the tournament
Browse files Browse the repository at this point in the history
  • Loading branch information
Quantumplation committed Dec 2, 2024
1 parent ddc4108 commit 950a15c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion referee/referee.ts
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,9 @@ hydra.onNewGame = async (newGameId, humanCount, botCount, ephemeralKey) => {
gameId = newGameId;
expectedHumans = humanCount;
expectedBots = botCount;
isQualifier = humanCount === 1 && botCount > 0;
const tournamentOpen = 1733238000000; // Dec 3, 2024, 3pm GMT
isQualifier =
new Date().valueOf() > 1733238000000 && humanCount === 1 && botCount > 0;
await sendEvent(gameId, {
type: "new_game",
game_id: gameId,
Expand Down

0 comments on commit 950a15c

Please sign in to comment.