Don't sort recursive scan

This commit is contained in:
Isaac Shoebottom 2023-11-07 15:53:52 -04:00
parent 83ba1af0cc
commit afa44d0ea4

View File

@ -23,9 +23,7 @@ export function recursiveScan(ns: NS) {
}
}
// Remove the current server
allServers.splice(allServers.indexOf("home"), 1)
// Print all servers
return allServers.sort()
return allServers.splice(allServers.indexOf("home"), 1)
}
/**