mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2025-02-18 10:53:43 +01:00
Add support for contract completion
This commit is contained in:
@ -193,6 +193,11 @@ export async function determineAllPossibilitiesForTabCompletion(
|
|||||||
for (let i = 0; i < homeComputer.programs.length; ++i) {
|
for (let i = 0; i < homeComputer.programs.length; ++i) {
|
||||||
allPos.push("./" + homeComputer.programs[i]);
|
allPos.push("./" + homeComputer.programs[i]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//Contracts on current server
|
||||||
|
for (let i = 0; i < currServ.contracts.length; ++i) {
|
||||||
|
allPos.push("./" + currServ.contracts[i].fn)
|
||||||
|
}
|
||||||
return allPos;
|
return allPos;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user