increase memory assumption per region

This commit is contained in:
Julian Krings
2026-01-26 21:37:29 +01:00
parent 7befce1084
commit a3bcea4f3e

View File

@@ -170,7 +170,7 @@ public class IrisSettings {
if (tectonicPlateSize > 0) if (tectonicPlateSize > 0)
return tectonicPlateSize; return tectonicPlateSize;
return (int) (getHardware.getProcessMemory() / 200L); return (int) (getHardware.getProcessMemory() / 512L);
} }
} }