mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-17 23:08:36 +02:00
UI: Clarify messages related to "buy" command (#1902)
This commit is contained in:
@@ -32,7 +32,7 @@ export function purchaseTorRouter(): void {
|
|||||||
dialogBoxCreate(
|
dialogBoxCreate(
|
||||||
"You have purchased a TOR router!\n" +
|
"You have purchased a TOR router!\n" +
|
||||||
"You now have access to the dark web from your home computer.\n" +
|
"You now have access to the dark web from your home computer.\n" +
|
||||||
"Use the buy command in the terminal to purchase programs.",
|
`Use the "buy" command in the terminal to purchase programs.`,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ import { listAllDarkwebItems, buyAllDarkwebItems, buyDarkwebItem } from "../../D
|
|||||||
export function buy(args: (string | number | boolean)[]): void {
|
export function buy(args: (string | number | boolean)[]): void {
|
||||||
if (!Player.hasTorRouter()) {
|
if (!Player.hasTorRouter()) {
|
||||||
Terminal.error(
|
Terminal.error(
|
||||||
"You need to be able to connect to the Dark Web to use the buy command. (Maybe there's a TOR router you can buy somewhere)",
|
`You need to be able to connect to the Dark Web to use the "buy" command. (Maybe there's a TOR router you can buy somewhere)`,
|
||||||
);
|
);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user