0
0
Fork 0

Move location of colon in field name

This commit is contained in:
Oliver-Akins 2021-08-29 15:14:05 -06:00
parent a50c63b679
commit f1586efc9e

View file

@ -64,7 +64,7 @@ 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.`, 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 { fields: quotes.map((quote, i) => { return {
name: `${i < winner_count ? '👑 ' : ''}Quote: ${i + 1}`, name: `${i < winner_count ? '👑 ' : ''}Quote ${i + 1}:`,
value: quote, value: quote,
}}), }}),
} }