diff --git a/src/Locations/ui/TorButton.tsx b/src/Locations/ui/TorButton.tsx index 1329cd45f..aa57ccd03 100644 --- a/src/Locations/ui/TorButton.tsx +++ b/src/Locations/ui/TorButton.tsx @@ -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.`, ); } diff --git a/src/Terminal/commands/buy.ts b/src/Terminal/commands/buy.ts index f16e179f1..d8682cb0f 100644 --- a/src/Terminal/commands/buy.ts +++ b/src/Terminal/commands/buy.ts @@ -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; }