UI: Clarify messages related to "buy" command (#1902)

This commit is contained in:
catloversg
2025-01-08 12:12:44 +07:00
committed by GitHub
parent 0c1f3756a2
commit f49d21cd71
2 changed files with 2 additions and 2 deletions

View File

@@ -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.`,
);
}

View File

@@ -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;
}