diff --git a/backend/entities/game.ts b/backend/entities/game.ts index 56a5630..fffd1da 100644 --- a/backend/entities/game.ts +++ b/backend/entities/game.ts @@ -311,6 +311,6 @@ export const game = { const { finished, stage } = serverGame; if (finished == 0) return 0; if (stage < 2) return 0; - return Math.floor(Math.pow(2, stage * 0.93) + stage * 4 + 5); + return Math.floor(Math.pow(2, stage * 0.975) + stage * 2 + 3); }, };