fix rewards function

This commit is contained in:
CutieCat2804 2024-10-16 18:11:46 +02:00
parent 5f9bf142b2
commit 88e74c6de5
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.92 + stage * 1.2));
return Math.floor(Math.pow(2, stage * 0.92));
},
};