Merge pull request #371 from d0sboots/hacking

NETSCRIPT: Add `additionalMsec` to BasicHGWOptions
This commit is contained in:
Mughur
2023-02-19 07:42:11 +02:00
committed by GitHub
23 changed files with 150 additions and 92 deletions

View File

@@ -256,6 +256,12 @@ interface BasicHGWOptions {
threads?: number;
/** Set to true this action will affect the stock market. */
stock?: boolean;
/** Number of additional milliseconds that will be spent waiting between the
* start of the function and when it completes. There will only be one,
* contiguous wait, which is relevant because stats such as server security
* level are computed at the *start* of the function.
* Must be non-negative. */
additionalMsec?: number;
}
/**