mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2025-02-18 10:53:43 +01:00
dont make new copies when injecting via localhost
This commit is contained in:
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -426,8 +426,10 @@ function initWebserver(): void {
|
|||||||
if (isScriptFilename(filename)) {
|
if (isScriptFilename(filename)) {
|
||||||
//If the current script already exists on the server, overwrite it
|
//If the current script already exists on the server, overwrite it
|
||||||
for (let i = 0; i < home.scripts.length; i++) {
|
for (let i = 0; i < home.scripts.length; i++) {
|
||||||
|
console.log(`${filename} ${home.scripts[i].filename}`);
|
||||||
if (filename == home.scripts[i].filename) {
|
if (filename == home.scripts[i].filename) {
|
||||||
home.scripts[i].saveScript(filename, code, "home", home.scripts);
|
home.scripts[i].saveScript(filename, code, "home", home.scripts);
|
||||||
|
return "written";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user