mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-22 07:33:48 +01:00
NETSCRIPT: Fix dynamicRamUsage returned by getRunningScript() (#1704)
Fixes #1700
This commit is contained in:
parent
24ab173d6c
commit
424ae160ba
@ -1496,7 +1496,11 @@ export const ns: InternalAPI<NSFull> = {
|
|||||||
const ident = helpers.scriptIdentifier(ctx, fn, hostname, args);
|
const ident = helpers.scriptIdentifier(ctx, fn, hostname, args);
|
||||||
const runningScript = helpers.getRunningScript(ctx, ident);
|
const runningScript = helpers.getRunningScript(ctx, ident);
|
||||||
if (runningScript === null) return null;
|
if (runningScript === null) return null;
|
||||||
return helpers.createPublicRunningScript(runningScript, ctx.workerScript);
|
// Need to look this up again, because we only have ident-based lookup
|
||||||
|
// for RunningScript.
|
||||||
|
const ws = workerScripts.get(runningScript.pid);
|
||||||
|
// We don't check for null, since it's fine to pass null as the 2nd arg.
|
||||||
|
return helpers.createPublicRunningScript(runningScript, ws);
|
||||||
},
|
},
|
||||||
ramOverride: (ctx) => (_ram) => {
|
ramOverride: (ctx) => (_ram) => {
|
||||||
const newRam = roundToTwo(helpers.number(ctx, "ram", _ram || 0));
|
const newRam = roundToTwo(helpers.number(ctx, "ram", _ram || 0));
|
||||||
|
Loading…
Reference in New Issue
Block a user