mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-22 23:53:48 +01:00
Fix Typing on kill in NetscriptFunctions.ts
forgot to mark hostname as optional
This commit is contained in:
parent
31ed5d8f64
commit
f3aed87fa4
@ -1009,7 +1009,7 @@ export function NetscriptFunctions(workerScript: WorkerScript): NS {
|
|||||||
workerScript.log("spawn", () => "Exiting...");
|
workerScript.log("spawn", () => "Exiting...");
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
kill: function (filename: any, hostname: any, ...scriptArgs: any): any {
|
kill: function (filename: any, hostname?: any, ...scriptArgs: any): any {
|
||||||
updateDynamicRam("kill", getRamCost("kill"));
|
updateDynamicRam("kill", getRamCost("kill"));
|
||||||
|
|
||||||
let res;
|
let res;
|
||||||
|
Loading…
Reference in New Issue
Block a user