We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4689f3b commit 5c019baCopy full SHA for 5c019ba
Code/Helpers/BetterCoros.cs
@@ -39,12 +39,12 @@ private static IEnumerator<float> Wrapper(
39
{
40
onException?.Invoke(compErr);
41
scr.Error(compErr.Message);
42
+ goto End;
43
}
44
catch (ScriptRuntimeError runErr)
45
46
onException?.Invoke(runErr);
- scr.Error($"SER was not able to predict this error before running the script: " +
47
- $"{runErr.Message ?? "ERROR UNSPECIFIED"}");
+ scr.Error(runErr.Message);
48
goto End;
49
50
catch (DeveloperFuckedUpException devErr)
0 commit comments