Limit throughput

This commit is contained in:
tobspr 2020-09-29 13:16:37 +02:00
parent 1fc9efcd5d
commit 9b7225bf44
1 changed files with 1 additions and 1 deletions

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,