From f2d49bc2eb6d22284146b1255b23c94f683d0a72 Mon Sep 17 00:00:00 2001 From: Tobias Springer Date: Sat, 9 May 2020 17:22:27 +0200 Subject: [PATCH] Fix item processors not working --- 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 30bced0f..a39e0a47 100644 --- a/src/js/game/hub_goals.js +++ b/src/js/game/hub_goals.js @@ -319,7 +319,7 @@ export class HubGoals extends BasicSerializableObject { case enumItemProcessorTypes.painter: return ( (1 / globalConfig.beltSpeedItemsPerSecond) * - this.upgradeImprovements.processor * + this.upgradeImprovements.processors * globalConfig.buildingSpeeds[processorType] );