From 40c696feb1249053049e8baed83221647bd6634c Mon Sep 17 00:00:00 2001 From: catloversg <152669316+catloversg@users.noreply.github.com> Date: Sat, 1 Feb 2025 01:52:27 +0700 Subject: [PATCH] UI: Clarify availability of "buy" CLI (#1940) --- src/DarkWeb/DarkWeb.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/DarkWeb/DarkWeb.tsx b/src/DarkWeb/DarkWeb.tsx index 6c883b265..542d43c3c 100644 --- a/src/DarkWeb/DarkWeb.tsx +++ b/src/DarkWeb/DarkWeb.tsx @@ -15,7 +15,8 @@ export function checkIfConnectedToDarkweb(): void { Terminal.print( "You are now connected to the dark web. From the dark web you can purchase illegal items. " + "Use the 'buy -l' command to display a list of all the items you can buy. Use 'buy [item-name]' " + - "to purchase an item. Use 'buy -a' to purchase all unowned items.", + "to purchase an item. Use 'buy -a' to purchase all unowned items. You can use the 'buy' command anywhere, " + + "not only when connecting to the 'darkweb' server.", ); } }