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:
parent
6fd4422424
commit
4ba63d10d7
@ -43,7 +43,7 @@ export class BeltReaderSystem extends GameSystemWithFilter {
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user