mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-26 17:43:48 +01:00
Merge pull request #2109 from hexnaught/remove-timestamp-newline-buy-list-patch
fix(command:buy) don't wrap in typography
This commit is contained in:
commit
50a85b61e2
@ -6,7 +6,6 @@ import { Terminal } from "../Terminal";
|
|||||||
import { SpecialServers } from "../Server/data/SpecialServers";
|
import { SpecialServers } from "../Server/data/SpecialServers";
|
||||||
import { Money } from "../ui/React/Money";
|
import { Money } from "../ui/React/Money";
|
||||||
import { DarkWebItem } from "./DarkWebItem";
|
import { DarkWebItem } from "./DarkWebItem";
|
||||||
import Typography from "@mui/material/Typography";
|
|
||||||
|
|
||||||
//Posts a "help" message if connected to DarkWeb
|
//Posts a "help" message if connected to DarkWeb
|
||||||
export function checkIfConnectedToDarkweb(): void {
|
export function checkIfConnectedToDarkweb(): void {
|
||||||
@ -31,9 +30,9 @@ export function listAllDarkwebItems(): void {
|
|||||||
);
|
);
|
||||||
|
|
||||||
Terminal.printRaw(
|
Terminal.printRaw(
|
||||||
<Typography>
|
<>
|
||||||
<span>{item.program}</span> - <span>{cost}</span> - <span>{item.description}</span>
|
<span>{item.program}</span> - <span>{cost}</span> - <span>{item.description}</span>
|
||||||
</Typography>,
|
</>,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user