mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-17 21:23:54 +01:00
Lint+format fix?
This commit is contained in:
parent
068533cd2f
commit
0310a98237
9
src/ScriptEditor/NetscriptDefinitions.d.ts
vendored
9
src/ScriptEditor/NetscriptDefinitions.d.ts
vendored
@ -215,7 +215,8 @@ export interface CrimeStats {
|
||||
* @public
|
||||
*/
|
||||
export interface BasicHGWOptions {
|
||||
/** Number of threads to use for this function. Must be less than or equal to the number of threads the script is running with. */
|
||||
/** Number of threads to use for this function.
|
||||
* Must be less than or equal to the number of threads the script is running with. */
|
||||
threads?: number;
|
||||
/** Set to true this action will affect the stock market. */
|
||||
stock?: boolean;
|
||||
@ -540,7 +541,8 @@ export interface BitNodeMultipliers {
|
||||
HackExpGain: number;
|
||||
/** Influences how quickly the player's hacking level (not experience) scales */
|
||||
HackingLevelMultiplier: number;
|
||||
/** Influences how much money is produced by Hacknet Nodes and the hash rate of Hacknet Servers (unlocked in BitNode-9) */
|
||||
/** Influences how much money is produced by Hacknet Nodes
|
||||
* and the hash rate of Hacknet Servers (unlocked in BitNode-9) */
|
||||
HacknetNodeMoney: number;
|
||||
/** Influences how much money it costs to upgrade your home computer's RAM */
|
||||
HomeComputerRamCost: number;
|
||||
@ -548,7 +550,8 @@ export interface BitNodeMultipliers {
|
||||
InfiltrationMoney: number;
|
||||
/** Influences how much rep the player can gain from factions when selling stolen documents and secrets */
|
||||
InfiltrationRep: number;
|
||||
/** Influences how much money can be stolen from a server when the player performs a hack against it through the Terminal. */
|
||||
/** Influences how much money can be stolen from a server when the player
|
||||
* performs a hack against it through the Terminal. */
|
||||
ManualHackMoney: number;
|
||||
/** Influence how much it costs to purchase a server */
|
||||
PurchasedServerCost: number;
|
||||
|
@ -128,7 +128,7 @@ describe("Netscript RAM Calculation/Generation Tests", function () {
|
||||
|
||||
describe("Singularity multiplier checks", () => {
|
||||
sf4.lvl = 3;
|
||||
const singFunctions = Object.entries(ns.singularity).filter(([key, val]) => typeof val === "function");
|
||||
const singFunctions = Object.entries(ns.singularity).filter(([__, val]) => typeof val === "function");
|
||||
const singObjects = singFunctions.map(([key, val]) => {
|
||||
return {
|
||||
name: key,
|
||||
|
Loading…
Reference in New Issue
Block a user