Merge pull request #1649 from danielyxie/dev

fix doc
This commit is contained in:
hydroflame 2021-11-01 23:31:16 -04:00 committed by GitHub
commit bf4d13cb0c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 4 additions and 6 deletions

@ -54,7 +54,7 @@ In :ref:`netscriptjs`::
getTeamSize() <bladeburnerapi/getTeamSize>
setTeamSize() <bladeburnerapi/setTeamSize>
getCityEstimatedPopulation() <bladeburnerapi/getCityEstimatedPopulation>
getCityEstimatedCommunities() <bladeburnerapi/getCityEstimatedCommunities>
getCityCommunities() <bladeburnerapi/getCityCommunities>
getCityChaos() <bladeburnerapi/getCityChaos>
getCity() <bladeburnerapi/getCity>
switchCity() <bladeburnerapi/switchCity>

@ -93,6 +93,9 @@ This includes information such as function signatures, what they do, and their r
wget() <basicfunctions/wget>
getFavorToDonate() <basicfunctions/getFavorToDonate>
flags() <basicfunctions/flags>
alert() <basicfunctions/alert>
toast() <basicfunctions/toast>
tprintf() <basicfunctions/tprintf>
.. toctree::
:caption: Deprecated:

@ -16,10 +16,5 @@ export const DarkWebItems: IMap<DarkWebItem> = {
DeepscanV1: new DarkWebItem(Programs.DeepscanV1.name, 500000, "Enables 'scan-analyze' with a depth up to 5."),
DeepscanV2: new DarkWebItem(Programs.DeepscanV2.name, 25e6, "Enables 'scan-analyze' with a depth up to 10."),
AutolinkProgram: new DarkWebItem(Programs.AutoLink.name, 1e6, "Enables direct connect via 'scan-analyze."),
ServerProfilerProgram: new DarkWebItem(
Programs.ServerProfiler.name,
1e6,
"Displays hacking and Netscript-related information about a server.",
),
FormulasProgram: new DarkWebItem(Programs.Formulas.name, 5e9, "Unlock access to the formulas API."),
};