Reduced max threadcount for main thread to avoid issue

This commit is contained in:
NotAlwaysTrue
2025-12-22 17:00:03 +08:00
parent b1072b7a50
commit 0b6882c37f

View File

@@ -24,7 +24,7 @@ namespace Barotrauma
private static readonly ParallelOptions parallelOptions = new ParallelOptions
{
MaxDegreeOfParallelism = 32
MaxDegreeOfParallelism = 16
};
#if CLIENT