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
commit 154936c1c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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

@ -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.
});
}