fix rewards function
This commit is contained in:
parent
5f9bf142b2
commit
88e74c6de5
|
|
@ -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));
|
||||
},
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in New Issue