1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2026-03-02 03:39:21 +00:00

Limit throughput

This commit is contained in:
tobspr
2020-09-29 13:16:37 +02:00
parent 1fc9efcd5d
commit 9b7225bf44

View File

@@ -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,