This commit is contained in:
Maplewheels
2026-02-15 06:01:59 -05:00
parent 6ac49a10f4
commit a0287b8561

View File

@@ -26,7 +26,8 @@ namespace Barotrauma
if (task.Exception != null)
{
var ex = task.Exception.GetInnermost();
throw new InvalidOperationException($"Failed to get result from task: task failed with exception {ex.Message} ({ex.GetType()}) {ex.StackTrace}");
// Commented out until Neurotrauma is fixed. Do not Commit.
// throw new InvalidOperationException($"Failed to get result from task: task failed with exception {ex.Message} ({ex.GetType()}) {ex.StackTrace}");
}
if (task is not Task<T>)
{