rescaled gem gain

This commit is contained in:
MasterGordon 2024-10-17 22:42:41 +02:00
parent 1bab0af55f
commit bcb21a7963
1 changed files with 1 additions and 1 deletions

View File

@ -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);
},
};