From 358b904871d6becd315a7b028554e2066fe7dd0a Mon Sep 17 00:00:00 2001 From: dartz Date: Mon, 3 Jun 2024 12:11:56 -0700 Subject: [PATCH] correction: change "Electoral Votes" to "seats" --- src/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index dff1a21..ae26090 100644 --- a/src/index.ts +++ b/src/index.ts @@ -75,8 +75,8 @@ if (!config.token) { .setTitle("2024 United States Presidential Election Simulator") .setDescription(`The CalubViem Press has called the 2024 United States Presidential Election for ${result.winner}!`) .addFields( - {name: `${result.winner === gopcandidate ? ":white_check_mark:" : ""} ${gopcandidate}`, value: `${result.gopVotes} Electoral Votes`, inline: true}, - {name: `${result.winner === demcandidate ? ":white_check_mark:" : ""} ${demcandidate}`, value: `${result.demVotes} Electoral Votes`, inline: true}, + {name: `${result.winner === gopcandidate ? ":white_check_mark:" : ""} ${gopcandidate}`, value: `${result.gopVotes} seats`, inline: true}, + {name: `${result.winner === demcandidate ? ":white_check_mark:" : ""} ${demcandidate}`, value: `${result.demVotes} seats`, inline: true}, ) .setImage("attachment://election.png") .setTimestamp();