1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2024-10-27 20:34:29 +00:00

Fix reader throughput

This commit is contained in:
tobspr 2020-09-21 18:32:26 +02:00
parent ad3be750fc
commit 0ca623f24e

View File

@ -48,7 +48,7 @@ export class BeltReaderSystem extends GameSystemWithFilter {
throughput = 1 / (averageSpacing / averageSpacingNum);
}
readerComp.lastThroughput = throughput;
readerComp.lastThroughput = Math.min(30, throughput);
}
}
}