From deb77d8a3e0737c851d9a2b37b549cccd519c1d0 Mon Sep 17 00:00:00 2001 From: Solomon Cammack Date: Tue, 11 Oct 2022 02:01:39 +0100 Subject: [PATCH] Fix auction timings --- server/src/discord/new_auction.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/discord/new_auction.js b/server/src/discord/new_auction.js index 7b5adca4..616aff5c 100644 --- a/server/src/discord/new_auction.js +++ b/server/src/discord/new_auction.js @@ -243,8 +243,8 @@ const Auction = { embed.setFooter(`Auction will close in ${Auction.wait.afterBid} seconds if there are no further bids.`); } console.log("[auction]", "sending first message"); + await Auction.channel.send({ embeds: [embed] }); Auction.Timer.initial(); - Auction.channel.send({ embeds: [embed] }); Auction.lastStartedTeam = startingTeam; }, sign: async function (player, team, bid) {