From edb33a14eb7a095440121cb76616776e79c7375e Mon Sep 17 00:00:00 2001 From: Oliver-Akins Date: Mon, 30 Aug 2021 16:55:55 -0600 Subject: [PATCH] Use the helper method to create the field, and use the quote text, not the object --- src/endpoints/management/create_bracket.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/endpoints/management/create_bracket.ts b/src/endpoints/management/create_bracket.ts index 866b7bc..778790f 100644 --- a/src/endpoints/management/create_bracket.ts +++ b/src/endpoints/management/create_bracket.ts @@ -81,8 +81,8 @@ export default { { description: `Note: If **more than ${Math.floor(config.guilds[gID].quote_max / 2)}** of the quotes tie, they will all be eliminated, otherwise, the ones that tie will move on to the next bracket.`, fields: quotes.map((quote, i) => { return { - name: `${i < winner_count ? '👑 ' : ''}Quote ${i + 1}:`, - value: quote, + name: generateFieldTitle(i, quote), + value: quote.text, }}), } ],