Fixed #41/2

Removed min hard cap for MaxDegreeOfParallelism
This commit is contained in:
NotAlwaysTrue
2026-01-16 17:15:57 +08:00
parent e7e444e9b2
commit e24024cbb2
5 changed files with 14 additions and 7 deletions
@@ -25,7 +25,7 @@ namespace Barotrauma
private static readonly ParallelOptions parallelOptions = new ParallelOptions
{
MaxDegreeOfParallelism = Math.Max(4,Environment.ProcessorCount - 1),
MaxDegreeOfParallelism = Math.Max(1,Environment.ProcessorCount - 1),
};
#if CLIENT