mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-27 11:27:04 +02:00
TERMINAL: Stop terminal scp from revealing and copying to unreachable servers (#1542)
This commit is contained in:
@@ -125,7 +125,12 @@ export async function getTabCompletionPossibilities(terminalText: string, baseDi
|
||||
const addGlobalAliases = () => addGeneric({ iterable: GlobalAliases.keys() });
|
||||
const addCommands = () => addGeneric({ iterable: gameCommands });
|
||||
const addDarkwebItems = () => addGeneric({ iterable: Object.values(DarkWebItems).map((item) => item.program) });
|
||||
const addServerNames = () => addGeneric({ iterable: GetAllServers().map((server) => server.hostname) });
|
||||
const addServerNames = () =>
|
||||
addGeneric({
|
||||
iterable: GetAllServers()
|
||||
.filter((server) => server.serversOnNetwork.length !== 0)
|
||||
.map((server) => server.hostname),
|
||||
});
|
||||
const addScripts = () => addGeneric({ iterable: currServ.scripts.keys(), usePathing: true });
|
||||
const addTextFiles = () => addGeneric({ iterable: currServ.textFiles.keys(), usePathing: true });
|
||||
const addCodingContracts = () => {
|
||||
|
||||
Reference in New Issue
Block a user