From a600e05c0d41d090d993d6568d9ba72f43771c48 Mon Sep 17 00:00:00 2001 From: Snarling <84951833+Snarling@users.noreply.github.com> Date: Mon, 5 Sep 2022 08:29:03 -0400 Subject: [PATCH] Fix typo --- src/NetscriptWorker.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NetscriptWorker.ts b/src/NetscriptWorker.ts index f9daec12b..a5cdcc5bd 100644 --- a/src/NetscriptWorker.ts +++ b/src/NetscriptWorker.ts @@ -395,7 +395,7 @@ function createAndAddWorkerScript(runningScriptObj: RunningScript, server: BaseS dialogBoxCreate( `Not enough RAM to run script ${runningScriptObj.filename} with args ${arrayToString(runningScriptObj.args)}.\n` + `This can occur when you reload the game and the script's RAM usage has increased (either because of an update to the game or ` + - `your changes to the script).\nThis can also occur if you have attempted to launched a script from a tail window with insufficient RAM. `, + `your changes to the script).\nThis can also occur if you have attempted to launch a script from a tail window with insufficient RAM. `, ); return false; }