mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-17 13:13:49 +01:00
mychanges
This commit is contained in:
parent
ea0be338e1
commit
d2d6c33fc8
@ -26,7 +26,7 @@ require("http")
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
.listen(9990);
|
.listen(9990, "127.0.0.1");
|
||||||
|
|
||||||
function createWindow(killall) {
|
function createWindow(killall) {
|
||||||
win = new BrowserWindow({
|
win = new BrowserWindow({
|
||||||
@ -143,11 +143,10 @@ function setStopProcessHandler(app, window, enabled) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const stopProcessHandler = () => {
|
const stopProcessHandler = () => {
|
||||||
if (process.platform !== "darwin") {
|
app.isQuiting = true;
|
||||||
app.quit();
|
app.quit();
|
||||||
// eslint-disable-next-line no-process-exit
|
// eslint-disable-next-line no-process-exit
|
||||||
process.exit(0);
|
process.exit(0);
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
if (enabled) {
|
if (enabled) {
|
||||||
|
@ -542,7 +542,7 @@ BitNodes["BitNode13"] = new BitNode(
|
|||||||
<br />
|
<br />
|
||||||
<br />
|
<br />
|
||||||
Their leader, Allison "Mother" Stanek is said to have created her own Augmentation whose power goes beyond any
|
Their leader, Allison "Mother" Stanek is said to have created her own Augmentation whose power goes beyond any
|
||||||
other. Find her in Chongquing and gain her trust.
|
other. Find her in Chongqing and gain her trust.
|
||||||
<br />
|
<br />
|
||||||
<br />
|
<br />
|
||||||
In this BitNode:
|
In this BitNode:
|
||||||
|
5
src/ScriptEditor/NetscriptDefinitions.d.ts
vendored
5
src/ScriptEditor/NetscriptDefinitions.d.ts
vendored
@ -4218,7 +4218,7 @@ export interface NS extends Singularity {
|
|||||||
tail(fn?: string, host?: string, ...args: any[]): void;
|
tail(fn?: string, host?: string, ...args: any[]): void;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the list servers connected to a server.
|
* Get the list of servers connected to a server.
|
||||||
* @remarks
|
* @remarks
|
||||||
* RAM cost: 0.2 GB
|
* RAM cost: 0.2 GB
|
||||||
*
|
*
|
||||||
@ -4226,7 +4226,7 @@ export interface NS extends Singularity {
|
|||||||
* node way from the specified target server. The hostnames in the returned
|
* node way from the specified target server. The hostnames in the returned
|
||||||
* array are strings.
|
* array are strings.
|
||||||
*
|
*
|
||||||
* @param host - Hostname of the server to scan.
|
* @param host - Optional, Hostname of the server to scan, default to current server.
|
||||||
* @returns Returns an string of hostnames.
|
* @returns Returns an string of hostnames.
|
||||||
*/
|
*/
|
||||||
scan(host?: string): string[];
|
scan(host?: string): string[];
|
||||||
@ -5914,7 +5914,6 @@ interface Division {
|
|||||||
cities: string[];
|
cities: string[];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Interface Theme
|
* Interface Theme
|
||||||
* @internal
|
* @internal
|
||||||
|
Loading…
Reference in New Issue
Block a user