Merge pull request #1720 from danielyxie/dev

revert omuretsu fix
This commit is contained in:
hydroflame
2021-11-13 20:49:57 -05:00
committed by GitHub
4 changed files with 6 additions and 7 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -138,8 +138,7 @@ function startNetscript2Script(workerScript: WorkerScript): Promise<WorkerScript
workerScript.errorMessage = e;
throw workerScript;
}
workerScript.errorMessage = makeRuntimeRejectMsg(workerScript, "Unknown error: " + JSON.stringify(e));
throw workerScript;
throw e; // Don't know what to do with it, let's rethrow.
});
}