mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-10 09:43:54 +01:00
lint
This commit is contained in:
parent
27a8582df8
commit
0d437e5b73
@ -1,6 +1,5 @@
|
|||||||
import { IPlayer } from "../PersonObjects/IPlayer";
|
import { IPlayer } from "../PersonObjects/IPlayer";
|
||||||
import { CONSTANTS } from "../Constants";
|
import { CONSTANTS } from "../Constants";
|
||||||
import { IPerson } from "../PersonObjects/IPerson";
|
|
||||||
|
|
||||||
export function getHospitalizationCost(p: IPlayer): number {
|
export function getHospitalizationCost(p: IPlayer): number {
|
||||||
if (p.money < 0) {
|
if (p.money < 0) {
|
||||||
|
@ -29,7 +29,7 @@ import { Router } from "../ui/GameRoot";
|
|||||||
import { SpecialServers } from "../Server/data/SpecialServers";
|
import { SpecialServers } from "../Server/data/SpecialServers";
|
||||||
import { Page } from "../ui/Router";
|
import { Page } from "../ui/Router";
|
||||||
import { Locations } from "../Locations/Locations";
|
import { Locations } from "../Locations/Locations";
|
||||||
import { GetServer, AddToAllServers, createUniqueRandomIp } from "../Server/AllServers";
|
import { GetServer } from "../Server/AllServers";
|
||||||
import { Programs } from "../Programs/Programs";
|
import { Programs } from "../Programs/Programs";
|
||||||
import { numeralWrapper } from "../ui/numeralFormat";
|
import { numeralWrapper } from "../ui/numeralFormat";
|
||||||
import { BitNodeMultipliers } from "../BitNode/BitNodeMultipliers";
|
import { BitNodeMultipliers } from "../BitNode/BitNodeMultipliers";
|
||||||
@ -39,7 +39,7 @@ import { Factions, factionExists } from "../Faction/Factions";
|
|||||||
import { Faction } from "../Faction/Faction";
|
import { Faction } from "../Faction/Faction";
|
||||||
import { netscriptDelay } from "../NetscriptEvaluator";
|
import { netscriptDelay } from "../NetscriptEvaluator";
|
||||||
import { convertTimeMsToTimeElapsedString } from "../utils/StringHelperFunctions";
|
import { convertTimeMsToTimeElapsedString } from "../utils/StringHelperFunctions";
|
||||||
import { getServerOnNetwork, safetlyCreateUniqueServer } from "../Server/ServerHelpers";
|
import { getServerOnNetwork } from "../Server/ServerHelpers";
|
||||||
import { Terminal } from "../Terminal";
|
import { Terminal } from "../Terminal";
|
||||||
import { calculateHackingTime } from "../Hacking";
|
import { calculateHackingTime } from "../Hacking";
|
||||||
import { Server } from "../Server/Server";
|
import { Server } from "../Server/Server";
|
||||||
|
@ -7,8 +7,6 @@ import { CONSTANTS } from "../Constants";
|
|||||||
import { calculateSkill } from "./formulas/skill";
|
import { calculateSkill } from "./formulas/skill";
|
||||||
import { calculateIntelligenceBonus } from "./formulas/intelligence";
|
import { calculateIntelligenceBonus } from "./formulas/intelligence";
|
||||||
import { IPerson } from "./IPerson";
|
import { IPerson } from "./IPerson";
|
||||||
import { Reviver } from "../utils/JSONReviver";
|
|
||||||
import { ITaskTracker } from "./ITaskTracker";
|
|
||||||
|
|
||||||
// Base class representing a person-like object
|
// Base class representing a person-like object
|
||||||
export abstract class Person implements IPerson {
|
export abstract class Person implements IPerson {
|
||||||
|
Loading…
Reference in New Issue
Block a user