Re-applied multiple fixs

This commit is contained in:
NotAlwaysTrue
2025-12-27 02:06:04 +08:00
parent 8f0eec7031
commit 51a1fb1235

View File

@@ -303,10 +303,10 @@ namespace Barotrauma
sw.Restart();
#endif
Parallel.ForEach(submarines, parallelOptions, sub =>
foreach(Submarine sub in submarines)
{
sub.Update((float)deltaTime);
});
}
#if CLIENT
sw.Stop();