Skip to content

Commit

Permalink
grab first 5 answers from Bingus
Browse files Browse the repository at this point in the history
  • Loading branch information
ImUrX committed Oct 20, 2023
1 parent 7c6031c commit b1a0dcb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bingus-bot/src/commands/ask.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export const askCommand: Command = {

const embedList = new EmbedList();
embedList.push(
...data.map(
...data.slice(0, 5).map(
(res) =>
new EmbedBuilder()
.setTitle(res.title)
Expand Down

0 comments on commit b1a0dcb

Please sign in to comment.