Limit throughput

pull/705/head
tobspr 4 years ago
parent 1fc9efcd5d
commit 9b7225bf44

@ -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…
Cancel
Save