mirror of
https://github.com/tobspr-games/shapez.io.git
synced 2026-01-21 03:50:47 -08:00
Limit throughput
This commit is contained in:
parent
1fc9efcd5d
commit
9b7225bf44
1 changed files with 1 additions and 1 deletions
|
|
@ -211,7 +211,7 @@ export class HubGoals extends BasicSerializableObject {
|
|||
return;
|
||||
}
|
||||
|
||||
const required = 4 + (this.level - 27) * 0.25;
|
||||
const required = Math.min(200, 4 + (this.level - 27) * 0.25);
|
||||
this.currentGoal = {
|
||||
definition: this.computeFreeplayShape(this.level),
|
||||
required,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue