Remove unneeded code and enable sorting on server list

This commit is contained in:
Isaac Shoebottom 2023-11-13 12:58:51 -04:00
parent afa44d0ea4
commit 7de44a3c2f

View File

@ -22,8 +22,8 @@ export function recursiveScan(ns: NS) {
} }
} }
} }
// Remove the current server // Remove the home server from the list
return allServers.splice(allServers.indexOf("home"), 1) return allServers.splice(allServers.indexOf("home"), 1).sort()
} }
/** /**
@ -135,7 +135,8 @@ export function executeScriptOnServerFromAnother(ns: NS, server: string, script:
ns.scp(script, server) ns.scp(script, server)
performFunctionIfCapable(ns, server, ns.exec, [script, server, threads, ...args]) performFunctionIfCapable(ns, server, ns.exec, [script, server, threads, ...args])
ns.atExit(() => { ns.atExit(() => {
ns.rm(script, server) // Remove the script from the server when the program exits
// ns.rm(script, server)
}) })
} }