mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-05-06 07:37:56 +02:00
bunch of bugfixes
This commit is contained in:
@@ -155,7 +155,7 @@ export function HacknetServerElem(props: IProps): React.ReactElement {
|
||||
<Money money={upgradeCacheCost} player={props.player} />
|
||||
</>
|
||||
);
|
||||
if (props.player.money.lt(upgradeCacheCost)) {
|
||||
if (props.player.money < upgradeCacheCost) {
|
||||
} else {
|
||||
}
|
||||
}
|
||||
|
||||
@@ -33,7 +33,7 @@ export function PlayerInfo(props: IProps): React.ReactElement {
|
||||
<>
|
||||
<Typography>
|
||||
Money:
|
||||
<Money money={props.player.money.toNumber()} />
|
||||
<Money money={props.player.money} />
|
||||
</Typography>
|
||||
|
||||
{hasServers && (
|
||||
|
||||
Reference in New Issue
Block a user