mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2025-04-03 00:42:40 +02:00
Merge pull request #630 from jaguilar/ns2_recompile_when_script_write
Recompile scripts when updated via ns.write
This commit is contained in:
@ -1901,6 +1901,7 @@ function NetscriptFunctions(workerScript) {
|
|||||||
}
|
}
|
||||||
mode === "w" ? script.code = data : script.code += data;
|
mode === "w" ? script.code = data : script.code += data;
|
||||||
script.updateRamUsage(server.scripts);
|
script.updateRamUsage(server.scripts);
|
||||||
|
script.markUpdated();
|
||||||
} else {
|
} else {
|
||||||
// Write to text file
|
// Write to text file
|
||||||
let txtFile = getTextFile(fn, server);
|
let txtFile = getTextFile(fn, server);
|
||||||
|
@ -79,6 +79,14 @@ export class Script {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Marks this script as having been updated. It will be recompiled next time something tries
|
||||||
|
* to exec it.
|
||||||
|
*/
|
||||||
|
markUpdated() {
|
||||||
|
this.module = "";
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Save a script from the script editor
|
* Save a script from the script editor
|
||||||
* @param {string} code - The new contents of the script
|
* @param {string} code - The new contents of the script
|
||||||
@ -96,7 +104,7 @@ export class Script {
|
|||||||
}
|
}
|
||||||
this.filename = filenameElem!.value;
|
this.filename = filenameElem!.value;
|
||||||
this.server = serverIp;
|
this.server = serverIp;
|
||||||
this.updateRamUsage(otherScripts);
|
this.updateRamUsage(otherScripts);
|
||||||
this.markUpdated();
|
this.markUpdated();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user