From 9b7225bf44a9f9906ae54564419f930ad936ccca Mon Sep 17 00:00:00 2001 From: tobspr Date: Tue, 29 Sep 2020 13:16:37 +0200 Subject: [PATCH] Limit throughput --- src/js/game/hub_goals.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/game/hub_goals.js b/src/js/game/hub_goals.js index af6e67fb..50de7d76 100644 --- a/src/js/game/hub_goals.js +++ b/src/js/game/hub_goals.js @@ -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,