diff --git a/src/commands/quotes.command.ts b/src/commands/quotes.command.ts index 959d406..ff2086c 100644 --- a/src/commands/quotes.command.ts +++ b/src/commands/quotes.command.ts @@ -137,9 +137,9 @@ async function searchQuotes(message: Discord.Message, args: string[]): Promise 0) { - let responseTxt = '' + let responseTxt = '\n' q.forEach((quote) => { - responseTxt += `\n${getQuoteStr(quote, useMention)}` + responseTxt += `- ${getQuoteStr(quote, useMention)}\n` }) message.reply("Found a few, I'll DM you what I got!") message.author.send(`Found ${q.length} quote${q.length !== 1 ? 's' : ''}:\n${responseTxt}`)