This commit is contained in:
Zoë Hoekstra 2022-09-01 16:27:31 +02:00
parent ec81fb60c3
commit 55df97d3d5
No known key found for this signature in database
GPG Key ID: F9B7B7D8130F3323
2 changed files with 2 additions and 2 deletions

@ -613,7 +613,7 @@ function getRunningScriptByArgs(
throw helpers.makeRuntimeRejectMsg( throw helpers.makeRuntimeRejectMsg(
ctx.workerScript, ctx.workerScript,
`Invalid scriptArgs argument passed into getRunningScript() from ${ctx.function}(). ` + `Invalid scriptArgs argument passed into getRunningScript() from ${ctx.function}(). ` +
`This is probably a bug. Please report to game developer`, `This is probably a bug. Please report to game developer`,
); );
} }

@ -45,7 +45,7 @@ export function prestigeWorkerScripts(): void {
ws.env.stopFlag = true; ws.env.stopFlag = true;
killWorkerScript(ws); killWorkerScript(ws);
} }
for (const [__, port] of NetscriptPorts.entries()) { for (const [__, port] of NetscriptPorts.entries()) {
port.clear(); port.clear();
} }