1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2025-06-13 13:04:03 +00:00

readers are capped to max current belt speed not 2!

This commit is contained in:
Sense101 2021-04-16 15:32:21 +01:00
parent 6fd4422424
commit 4ba63d10d7

View File

@ -43,7 +43,7 @@ export class BeltReaderSystem extends GameSystemWithFilter {
throughput = 1 / (averageSpacing / averageSpacingNum) + 0.01; throughput = 1 / (averageSpacing / averageSpacingNum) + 0.01;
} }
readerComp.lastThroughput = Math.min(globalConfig.beltSpeedItemsPerSecond, throughput); readerComp.lastThroughput = Math.min(globalConfig.beltSpeedItemsPerSecond * this.root.hubGoals.upgradeLevels["belt"], throughput);
} }
// Set the pins value - shape output consistent with the boolean output // Set the pins value - shape output consistent with the boolean output