fix: increase assembler speed

fixes #13
This commit is contained in:
Timo Ley 2023-02-28 19:08:39 +01:00
parent dffe6ce734
commit 992ba8a8b8
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ public class AssemblerGridCache implements IAssemblerCache {
public void onUpdateTick() {
if (--this.cooldown > 0)
return;
this.cooldown = 20;
this.cooldown = 15;
for (AssemblerCluster ac : assemblers.keySet()) {
if (ac.isDestroyed) {