mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-16 06:18:42 +02:00
UI: Clarify messages related to "buy" command (#1902)
This commit is contained in:
@@ -32,7 +32,7 @@ export function purchaseTorRouter(): void {
|
||||
dialogBoxCreate(
|
||||
"You have purchased a TOR router!\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 {
|
||||
if (!Player.hasTorRouter()) {
|
||||
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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user