small tweak

This commit is contained in:
RePixelatedMC
2023-12-27 08:06:40 +01:00
parent f8c42b3e48
commit 26e71ee6b5
@@ -32,9 +32,9 @@ public class IrisEngineSVC implements IrisService {
public void onEnable() { public void onEnable() {
tectonicLimit.set(2); tectonicLimit.set(2);
long t = getHardware.getProcessMemory(); long t = getHardware.getProcessMemory();
while (t > 250) { while (t > 200) {
tectonicLimit.getAndAdd(1); tectonicLimit.getAndAdd(1);
t = t - 250; t = t - 200;
} }
this.setup(); this.setup();
cacheTicker.start(); cacheTicker.start();