WLink

Results 1 comments of WLink

I added this on initialize part of tshock.cs ```TaskScheduler.UnobservedTaskException += TaskScheduler_UnobservedTaskException;``` ``` protected void TaskScheduler_UnobservedTaskException(object sender, UnobservedTaskExceptionEventArgs e) { if (e.Observed == true) { return; } TShock.Log.ConsoleError(e.Exception.Flatten().ToString()); e.SetObserved(); } ```...