mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-05-04 22:59:42 +02:00
Make the main player object an alias, makes it easier to import
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
import { CONSTANTS } from "../../Constants";
|
||||
|
||||
import { Player } from "../../Player";
|
||||
import { Player } from "@player";
|
||||
import { Multipliers } from "../Multipliers";
|
||||
|
||||
export const calculateEntropy = (stacks = 1): Multipliers => {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import { StaticAugmentations } from "../../Augmentation/StaticAugmentations";
|
||||
import { GraftableAugmentation } from "./GraftableAugmentation";
|
||||
import { Player } from "../../Player";
|
||||
import { Player } from "@player";
|
||||
|
||||
export const getGraftingAvailableAugs = (): string[] => {
|
||||
const augs: string[] = [];
|
||||
|
||||
@@ -15,7 +15,7 @@ import { Router } from "../../../ui/GameRoot";
|
||||
import { ConfirmationModal } from "../../../ui/React/ConfirmationModal";
|
||||
import { Money } from "../../../ui/React/Money";
|
||||
import { convertTimeMsToTimeElapsedString, formatNumber } from "../../../utils/StringHelperFunctions";
|
||||
import { Player } from "../../../Player";
|
||||
import { Player } from "@player";
|
||||
import { GraftableAugmentation } from "../GraftableAugmentation";
|
||||
import { calculateGraftingTimeWithBonus, getGraftingAvailableAugs } from "../GraftingHelpers";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user