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." + }`; } );