diff --git a/src/js/core/config.js b/src/js/core/config.js index e06f9422..4ad58123 100644 --- a/src/js/core/config.js +++ b/src/js/core/config.js @@ -72,7 +72,7 @@ export const globalConfig = { painterQuad: 1 / 8, mixer: 1 / 5, stacker: 1 / 6, - advancedProcessor: 1 / 3, + advancedProcessor: 1 / 8, }, // Zooming diff --git a/src/js/game/hub_goals.js b/src/js/game/hub_goals.js index 612bc124..8b48dfaf 100644 --- a/src/js/game/hub_goals.js +++ b/src/js/game/hub_goals.js @@ -443,7 +443,11 @@ export class HubGoals extends BasicSerializableObject { ); } case enumItemProcessorTypes.advancedProcessor: { - return globalConfig.beltSpeedItemsPerSecond * globalConfig.buildingSpeeds[processorType]; + return ( + globalConfig.beltSpeedItemsPerSecond * + this.upgradeImprovements.processors * + globalConfig.buildingSpeeds[processorType] + ); } default: assertAlways(false, "invalid processor type: " + processorType); diff --git a/translations/base-en.yaml b/translations/base-en.yaml index 64b1777a..5436f5e2 100644 --- a/translations/base-en.yaml +++ b/translations/base-en.yaml @@ -303,7 +303,7 @@ ingame: green: Green blue: Blue yellow: Yellow - purple: Purple + purple: Magenta cyan: Cyan white: White black: Black