mirror of
https://github.com/tobspr/shapez.io.git
synced 2025-06-13 13:04:03 +00:00
fixed reader capping to zero, it now actually correctly caps to the max spped of the belt
This commit is contained in:
parent
c47ea745c5
commit
4857d33cbf
@ -44,7 +44,7 @@ export class BeltReaderSystem extends GameSystemWithFilter {
|
|||||||
}
|
}
|
||||||
|
|
||||||
readerComp.lastThroughput = Math.min(
|
readerComp.lastThroughput = Math.min(
|
||||||
globalConfig.beltSpeedItemsPerSecond * this.root.hubGoals.upgradeLevels.belt,
|
globalConfig.beltSpeedItemsPerSecond * this.root.hubGoals.upgradeImprovements.belt,
|
||||||
throughput
|
throughput
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user