mirror of
https://github.com/tobspr-games/shapez.io.git
synced 2026-01-26 14:30:37 -08:00
Fix reader cap (#810)
This commit is contained in:
parent
366a2a9f58
commit
868f9bc06a
1 changed files with 1 additions and 1 deletions
|
|
@ -48,7 +48,7 @@ export class BeltReaderSystem extends GameSystemWithFilter {
|
|||
throughput = 1 / (averageSpacing / averageSpacingNum);
|
||||
}
|
||||
|
||||
readerComp.lastThroughput = Math.min(30, throughput);
|
||||
readerComp.lastThroughput = Math.min(globalConfig.beltSpeedItemsPerSecond * 23.9, throughput);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue