Fix dialog tweaks

This commit is contained in:
Hri7566 2024-03-05 17:39:48 -05:00
parent 8c8d304e15
commit 3bd0696508
1 changed files with 3 additions and 3 deletions

View File

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