diff --git a/src/api/commands/groups/fishing/look.ts b/src/api/commands/groups/fishing/look.ts index 987adaf..0cb7cff 100644 --- a/src/api/commands/groups/fishing/look.ts +++ b/src/api/commands/groups/fishing/look.ts @@ -25,8 +25,8 @@ export const look = new Command( ); } - return `There's ${ - objList.join(", ") + ", about." || "not much around." - }`; + const list = objList.join(", "); + + return `There's ${list ? list + ", about." : "not much around."}`; } );