From 8c8d304e159f1d369cf53863d4949be5566d2398 Mon Sep 17 00:00:00 2001 From: Hri7566 Date: Tue, 5 Mar 2024 17:38:57 -0500 Subject: [PATCH] Tweak look dialog --- src/api/commands/groups/fishing/look.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/api/commands/groups/fishing/look.ts b/src/api/commands/groups/fishing/look.ts index 20014de..987adaf 100644 --- a/src/api/commands/groups/fishing/look.ts +++ b/src/api/commands/groups/fishing/look.ts @@ -25,6 +25,8 @@ export const look = new Command( ); } - return `There's ${objList.join(", ")}, about.`; + return `There's ${ + objList.join(", ") + ", about." || "not much around." + }`; } );