convert BN13 to a more conventional one.

This commit is contained in:
Olivier Gagnon
2021-11-18 15:38:19 -05:00
266 changed files with 478 additions and 5178 deletions
+2 -2
View File
@@ -1992,7 +1992,7 @@ export interface Singularity {
*
* @returns True if the installation was successful.
*/
installBackdoor(): Promise<boolean>;
installBackdoor(): Promise<void>;
}
/**
@@ -3731,7 +3731,7 @@ export interface NS extends Singularity {
* @param growthAmount - Multiplicative factor by which the server is grown. Decimal form..
* @returns The amount of grow calls needed to grow the specified server by the specified amount
*/
growthAnalyze(host: string, growthAmount: number): number;
growthAnalyze(host: string, growthAmount: number, cores?: number): number;
/**
* Calculate the security increase for a number of thread.
+11 -3
View File
@@ -405,9 +405,17 @@ export function Root(props: IProps): React.ReactElement {
{ram}
</Typography>
<Button onClick={save}>Save & Close (Ctrl/Cmd + b)</Button>
<Link sx={{ mx: 1 }} target="_blank" href="https://bitburner.readthedocs.io/en/latest/index.html">
<Typography> Netscript Documentation</Typography>
</Link>
<Typography sx={{ mx: 1 }}>
{" "}
Documentation:{" "}
<Link target="_blank" href="https://bitburner.readthedocs.io/en/latest/index.html">
Basic
</Link>{" "}
|
<Link target="_blank" href="https://github.com/danielyxie/bitburner/blob/dev/markdown/bitburner.ns.md">
Full
</Link>
</Typography>
</Box>
<OptionsModal
open={optionsOpen}