NETSCRIPT: Add "temporary" as a RunOption to run/exec/spawn (#432)

This commit is contained in:
David Walker
2023-03-21 15:54:49 -07:00
committed by GitHub
parent 042a476f78
commit 98f7f473b4
22 changed files with 611 additions and 45 deletions

View File

@@ -62,6 +62,9 @@ export class RunningScript {
// Number of threads that this script is running with
threads = 1 as PositiveInteger;
// Whether this RunningScript is excluded from saves
temporary = false;
// Script urls for the current running script for translating urls back to file names in errors
dependencies: ScriptUrl[] = [];