Skip to content

Commit

Permalink
Fix auction timings
Browse files Browse the repository at this point in the history
  • Loading branch information
slmnio committed Oct 11, 2022
1 parent feef885 commit 6b0deab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/discord/new_auction.js
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,6 @@ const Auction = {
Auction.activePlayer = player;


Auction.Timer.initial();
let embed = new Discord.MessageEmbed();
embed.setTitle(`Auction started: ${player.get("Name")}`);
embed.setColor(0x44D582);
Expand Down Expand Up @@ -244,6 +243,7 @@ const Auction = {
embed.setFooter(`Auction will close in ${Auction.wait.afterBid} seconds if there are no further bids.`);
}
console.log("[auction]", "sending first message");
Auction.Timer.initial();
Auction.channel.send({ embeds: [embed] });
Auction.lastStartedTeam = startingTeam;
},
Expand Down

0 comments on commit 6b0deab

Please sign in to comment.