Spaces:
Sleeping
Sleeping
constants update
Browse files
patches/convex/constants.ts
CHANGED
|
@@ -70,7 +70,7 @@ export const ACTIVITIES = [
|
|
| 70 |
{ description: 'gardening', emoji: '🥕', duration: 60_000 },
|
| 71 |
];
|
| 72 |
|
| 73 |
-
export const ENGINE_ACTION_DURATION =
|
| 74 |
// export const DAY_DURATION = 60000;
|
| 75 |
// export const NIGHT_DURATION = 60000;
|
| 76 |
// export const WWOLF_VOTE_DURATION = 30000;
|
|
@@ -78,15 +78,15 @@ export const ENGINE_ACTION_DURATION = 30000;
|
|
| 78 |
// export const LLM_VOTE_DURATION = 60000;
|
| 79 |
|
| 80 |
// Debugging
|
| 81 |
-
export const DAY_DURATION =
|
| 82 |
-
export const NIGHT_DURATION =
|
| 83 |
-
export const WWOLF_VOTE_DURATION =
|
| 84 |
-
export const PLAYER_KILL_VOTE_DURATION =
|
| 85 |
-
export const LLM_VOTE_DURATION =
|
| 86 |
|
| 87 |
export const MAX_NPC = 8;
|
| 88 |
|
| 89 |
-
export const LOBBY_SIZE =
|
| 90 |
|
| 91 |
// Bound the number of pathfinding searches we do per game step.
|
| 92 |
export const MAX_PATHFINDS_PER_STEP = 16;
|
|
|
|
| 70 |
{ description: 'gardening', emoji: '🥕', duration: 60_000 },
|
| 71 |
];
|
| 72 |
|
| 73 |
+
export const ENGINE_ACTION_DURATION = 3000;
|
| 74 |
// export const DAY_DURATION = 60000;
|
| 75 |
// export const NIGHT_DURATION = 60000;
|
| 76 |
// export const WWOLF_VOTE_DURATION = 30000;
|
|
|
|
| 78 |
// export const LLM_VOTE_DURATION = 60000;
|
| 79 |
|
| 80 |
// Debugging
|
| 81 |
+
export const DAY_DURATION = 60000;
|
| 82 |
+
export const NIGHT_DURATION = 60000;
|
| 83 |
+
export const WWOLF_VOTE_DURATION = 30000;
|
| 84 |
+
export const PLAYER_KILL_VOTE_DURATION = 30000;
|
| 85 |
+
export const LLM_VOTE_DURATION = 60000;
|
| 86 |
|
| 87 |
export const MAX_NPC = 8;
|
| 88 |
|
| 89 |
+
export const LOBBY_SIZE = 0;
|
| 90 |
|
| 91 |
// Bound the number of pathfinding searches we do per game step.
|
| 92 |
export const MAX_PATHFINDS_PER_STEP = 16;
|